blob: f206cba3f420499be11d89571d440d7d54d364b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _RATPOISON_HISTORY_H
#define _RATPOISON_HISTORY_H 1
void history_load ();
void history_save ();
void history_resize (int size);
void history_reset ();
void history_add (char *item);
char *history_next ();
char *history_previous ();
char *history_list_items ();
int history_expand_line (char *string, char **output);
#endif /* ! _RATPOISON_HISTORY_H */
|