| 439 | */ |
| 440 | |
| 441 | void cleanup_handler(int signum) { |
| 442 | if (signum == SIGINT) { |
| 443 | printf("\nCtrl+C detected. Performing cleanup...\n"); |
| 444 | printf("Cleanup complete. Exiting.\n"); |
| 445 | _exit(0); |
| 446 | } |
| 447 | } |
| 448 | |
| 449 | static void usage(const char* argv0) { |
| 450 | printf("\nUsage:\n"); |
nothing calls this directly
no outgoing calls
no test coverage detected