20 lines
264 B
C
20 lines
264 B
C
// Chat GPT code
|
|
#ifndef LOG_H
|
|
#define LOG_H
|
|
|
|
#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
|