Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature_unix/sys/include/complete.h – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#pragma	lib	"libcomplete.a"
2
#pragma src "/sys/src/libcomplete"
3
 
4
typedef struct Completion Completion;
5
 
6
struct Completion{
7
	uchar advance;		/* whether forward progress has been made */
8
	uchar complete;	/* whether the completion now represents a file or directory */
9
	char *string;		/* the string to advance, suffixed " " or "/" for file or directory */
10
	int nmatch;		/* number of files that matched */
11
	int nfile;			/* number of files returned */
12
	char **filename;	/* their names */
13
};
14
 
15
Completion* complete(char *dir, char *s);
16
void freecompletion(Completion*);