ncurses-gameoflife/log.h

13 lines
144 B
C
Raw Normal View History

2020-07-01 08:49:06 +08:00
#ifndef LOG_H
#define LOG_H
void startLog(char* filename);
2020-07-06 07:56:29 +08:00
void logString(char* string);
2020-07-01 08:49:06 +08:00
void logLine(char* string);
void endLog();
#endif