Added logging functionality.

This commit is contained in:
Sheldon Lee
2020-07-01 01:49:06 +01:00
parent c68216afa6
commit 49cced6b4f
2 changed files with 32 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#ifndef LOG_H
#define LOG_H
void startLog(char* filename);
void logLine(char* string);
void endLog();
#endif