init commit

This commit is contained in:
chinosk
2024-05-20 19:31:18 +08:00
parent eca1917745
commit c3ca03f812
105 changed files with 29901 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef GAKUMAS_LOCALIFY_LOG_H
#define GAKUMAS_LOCALIFY_LOG_H
namespace GakumasLocal::Log {
void LogFmt(int prio, const char* fmt, ...);
void Info(const char* msg);
void InfoFmt(const char* fmt, ...);
void Error(const char* msg);
void ErrorFmt(const char* fmt, ...);
void Debug(const char* msg);
void DebugFmt(const char* fmt, ...);
}
#endif //GAKUMAS_LOCALIFY_LOG_H