summaryrefslogtreecommitdiff
path: root/replay.h
blob: 7f1e331079962d1c4f916f5a453fdc01a4034273 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef REPLAY_H_INCLUDED
#define REPLAY_H_INCLUDED

#define _XOPEN_SOURCE
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include <ctype.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 readreplayline(int seconds, int linenum, char *str);

int writereplayline(char *str);

#endif