This commit is contained in:
2023-08-31 03:26:16 +02:00
parent 47fed0fafa
commit 00b5cb548a
50 changed files with 21616 additions and 262 deletions

11
clib/logger.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef LOGGER_H_QWERTY
#define LOGGER_H_QWERTY
void log_init(void);
void log_destroy(void);
void log_error(const char* format, ... );
void log_debug(const char* format, ... );
void log_warning(const char* format, ... );
#endif