aboutsummaryrefslogtreecommitdiff
path: root/include/complete.h
blob: 7ee2b18a0c2a9968f206d6f653375519d92a3483 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma	lib	"libcomplete.a"
#pragma src "/sys/src/libcomplete"

typedef struct Completion Completion;

struct Completion{
	uchar advance;		/* whether forward progress has been made */
	uchar complete;	/* whether the completion now represents a file or directory */
	char *string;		/* the string to advance, suffixed " " or "/" for file or directory */
	int nfile;			/* number of files that matched */
	char **filename;	/* their names */
};

Completion* complete(char *dir, char *s);
void freecompletion(Completion*);