sdl-audio/log.h

20 lines
264 B
C
Raw Normal View History

2024-10-10 20:11:57 +08:00
// Chat GPT code
#ifndef LOG_H
#define LOG_H
2024-10-10 20:11:57 +08:00
#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);
#endif