Implement logger functionality and signal handling: add Logger structure with mutex, logging functions, and handle SIGINT in utils.

This commit is contained in:
2025-05-18 19:02:17 +02:00
parent 12749c4552
commit d83f2df60f
7 changed files with 134 additions and 11 deletions
+1
View File
@@ -7,4 +7,5 @@ void printTimeInString(time_t _input, char * _output);
void printDateAndTimeInString(time_t _input, char * _output);
void handle_sigint(int sig);
#endif