aboutsummaryrefslogtreecommitdiff
path: root/include/history.h
blob: b299b8fccc7e4c8812ec1a6e7d567776c5be8faa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#define HISTORY_SIZE 100

struct history
{
	char *lines[HISTORY_SIZE];
	int pos;
	int realpos;
};

void history_add (struct history *his, char *text);
void history_free (struct history *his);
char *history_up (struct history *his);
char *history_down (struct history *his);