imported.
[runtime.git] / apps / irssi / src / fe-common / core / completion.h
1 #ifndef __COMPLETION_H
2 #define __COMPLETION_H
3
4 #include "window-items.h"
5
6 /* automatic word completion - called when space/enter is pressed */
7 char *auto_word_complete(const char *line, int *pos);
8 /* manual word completion - called when TAB is pressed */
9 char *word_complete(WINDOW_REC *window, const char *line, int *pos);
10
11 GList *filename_complete(const char *path);
12
13 void completion_init(void);
14 void completion_deinit(void);
15
16 #endif