2012-10-25 03:33:23 +04:00
|
|
|
#ifndef HEXCHAT_HISTORY_H
|
|
|
|
#define HEXCHAT_HISTORY_H
|
2011-02-24 06:14:30 +03:00
|
|
|
|
|
|
|
#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
|