1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-08-13 16:53:48 -04:00
hexchat/src/common/history.h
berkeviktor@aol.com 4a6ceffb98 add xchat r1489
2011-02-24 04:14:30 +01:00

19 lines
351 B
C

#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