Files
LLog/include/LLog.h
2026-05-18 16:21:05 -05:00

13 lines
159 B
C

#ifndef LLog_H
#define LLog_H
enum lLogLevel {
lINFO,
lWARNING,
lERROR,
lDEBUG
};
void lLog(enum lLogLevel LOG_LEVEL, char* MESSAGE);
#endif