create project structure

This commit is contained in:
2026-05-18 16:21:05 -05:00
parent 5e593720d6
commit 2d6ed0b99d
5 changed files with 124 additions and 0 deletions

11
LLog.c Normal file
View File

@@ -0,0 +1,11 @@
#include "include/LLog.h"
#include <stdio.h>
void lLog(enum lLogLevel LOG_LEVEL, char* MESSAGE) {
char* LOG_LEVEL_STRING = LOG_LEVEL == 0 ? "INFO" :
LOG_LEVEL == 1 ? "WARNING" :
LOG_LEVEL == 2 ? "ERROR" :
LOG_LEVEL == 3 ? "DEBUG" :
"invalid_log_level";
printf("[%s]: %s\n", LOG_LEVEL_STRING, MESSAGE);
}