ncurses-gameoflife/log.h

11 lines
113 B
C
Raw Normal View History

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