sdl-audio/log.h

15 lines
227 B
C
Raw Normal View History

2024-10-10 20:11:57 +08:00
// Chat GPT code
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
typedef enum {
LOG_INFO,
LOG_WARNING,
LOG_ERROR
} LogLevel;
const char* get_current_time();
void log_message(LogLevel level, const char* message);