summaryrefslogtreecommitdiffstats
path: root/include/complete.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/complete.h')
-rw-r--r--include/complete.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/complete.h b/include/complete.h
index cc0e88de0f..0c8ebd6a3b 100644
--- a/include/complete.h
+++ b/include/complete.h
@@ -2,9 +2,16 @@
#define __COMPLETE_
#include <linux/list.h>
+#include <malloc.h>
+#include <stringlist.h>
+
+#define COMPLETE_END 0
+#define COMPLETE_CONTINUE 1
int complete(char *instr, char **outstr);
void complete_reset(void);
+int command_complete(struct string_list *sl, char *instr);
+
#endif /* __COMPLETE_ */