diff options
Diffstat (limited to 'replay.h')
-rw-r--r-- | replay.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -7,15 +7,16 @@ #include <stdlib.h> #include <time.h> #include <ctype.h> +#include <limits.h> #define MAXCHAR 1000 #define TIMELEN 11 // 32-bit unixtime is up to 10 characters (+1 for null char) // TODO - Make this Year 2038 proof #define TIMELENF 11 // [HH:MM:SS] = 10 characters + 1 for null char -int replaylines(int seconds); +int replaylines(int seconds, char *basedir); -int readreplayline(int seconds, int linenum, char *str); +int readreplayline(int seconds, int linenum, char *str, char *basedir); -int writereplayline(char *str); +int writereplayline(char *str, char *basedir); #endif |