dish/main.c

24 lines
365 B
C
Raw Normal View History

2022-09-18 03:15:07 +00:00
#include <signal.h>
2022-09-18 03:24:31 +00:00
#include <stdio.h>
#include <unistd.h>
2022-09-18 03:44:39 +00:00
#include <stdlib.h>
2022-09-18 05:14:30 +00:00
#include "loop.h"
2022-09-18 03:24:31 +00:00
void intHandler(int dummy) {
printf("\nend!\n");
2022-09-18 03:44:39 +00:00
exit(EXIT_FAILURE);
2022-09-18 03:24:31 +00:00
}
2022-09-18 03:15:07 +00:00
int main(int argc, char *argv[]) {
2022-09-18 03:24:31 +00:00
signal(SIGINT, intHandler);
printf("Hello, World!\n");
#ifdef DEBUG
printf("DEBUG is defined\n");
#endif
2022-09-18 03:44:39 +00:00
while (1) {
2022-09-18 05:14:30 +00:00
loop();
2022-09-18 03:24:31 +00:00
}
return 0;
2022-09-18 03:15:07 +00:00
}