11 lines
113 B
C
11 lines
113 B
C
|
#ifndef LOG_H
|
||
|
#define LOG_H
|
||
|
|
||
|
void startLog(char* filename);
|
||
|
|
||
|
void logLine(char* string);
|
||
|
|
||
|
void endLog();
|
||
|
|
||
|
#endif
|