fns.h (551B)
1 2 /* caret.c */ 3 void caret_delete(int, int); 4 char* caret_find(int, int); 5 void caret_insert(char*, bool); 6 void caret_move(int, int); 7 void caret_set(int, int); 8 9 /* history.c */ 10 void history_dump(const char*, int); 11 char* history_search(int, char*, int); 12 13 /* main.c */ 14 void debug(int, const char*, ...); 15 Item* filter_list(Item*, char*); 16 void update_filter(bool); 17 void update_input(void); 18 19 /* menu.c */ 20 void menu_draw(void); 21 void menu_init(void); 22 void menu_show(void); 23 24 /* keys.c */ 25 void parse_keys(char*); 26 char** find_key(char*, long); 27 int getsym(char*); 28