Created initial files

This commit is contained in:
t
2025-01-27 21:02:54 +01:00
parent 1ee553a410
commit 1766923c61
43 changed files with 5649 additions and 11 deletions
+11 -2
View File
@@ -1,6 +1,15 @@
#include <stdio.h>
#include <stdlib.h>
#include "zmq.h"
#include "zmq_worker.h"
int main() {
printf("Hello, World!\n");
int main(int argc, char **argv) {
if(argc < 2){
fprintf(stderr, "Usage: %s <file.txt> <worker port 1> <worker port 2> ... <worker port n>", argv[0]);
exit(1);
}
FILE *fp = fopen(argv[1], "r");
}