summary refs log tree commit diff stats
path: root/po/Makevars
AgeCommit message (Collapse)Author
2012-07-13Another bunch of rebranding stuffBerke Viktor
2011-02-24add xchat r1489berkeviktor@aol.com
a> 7 8 9 10 11 12 13 14 15 16 17 18

















                                                           
#ifndef XCHAT_HISTORY_H
#define XCHAT_HISTORY_H

#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 *current_text);
char *history_down (struct history *his);

#endif