Files
LLog/include/LLog.h

13 lines
159 B
C
Raw Normal View History

2026-05-18 16:21:05 -05:00
#ifndef LLog_H
#define LLog_H
enum lLogLevel {
lINFO,
lWARNING,
lERROR,
lDEBUG
};
void lLog(enum lLogLevel LOG_LEVEL, char* MESSAGE);
#endif