1 #ifndef XCHAT_HISTORY_H
2 #define XCHAT_HISTORY_H
4 #define HISTORY_SIZE 100
8 char *lines
[HISTORY_SIZE
];
13 void history_add (struct history
*his
, char *text
);
14 void history_free (struct history
*his
);
15 char *history_up (struct history
*his
, char *current_text
);
16 char *history_down (struct history
*his
);