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

8
test/test.c Normal file
View File

@@ -0,0 +1,8 @@
#include "../include/LLog.h"
int main(void) {
lLog(lINFO, "Hello, INFO!");
lLog(lWARNING, "Hello, WARNING!");
lLog(lERROR, "Hello, ERROR!");
lLog(lDEBUG, "Hello, DEBUG!");
}