summaryrefslogtreecommitdiffstats
path: root/include/complete.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/complete.h')
-rw-r--r--include/complete.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/complete.h b/include/complete.h
new file mode 100644
index 0000000000..87332b8160
--- /dev/null
+++ b/include/complete.h
@@ -0,0 +1,15 @@
+#ifndef __COMPLETE_
+#define __COMPLETE_
+
+#include <list.h>
+
+int complete(char *instr, char **outstr);
+void complete_reset(void);
+
+struct complete_handle {
+ struct list_head list;
+ char str[0];
+};
+
+#endif /* __COMPLETE_ */
+