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

11 lines
113 B
C

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