summaryrefslogtreecommitdiffstats
path: root/include/complete.h
blob: 87332b8160a3c6c9f210de5724ad44b0ca9bfe10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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_ */