ncurses-gameoflife/log.h
2020-07-06 00:56:29 +01:00

13 lines
144 B
C

#ifndef LOG_H
#define LOG_H
void startLog(char* filename);
void logString(char* string);
void logLine(char* string);
void endLog();
#endif