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-vt/sys/src/cmd/ip/glob.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
typedef struct Glob Glob;
2
typedef struct Globlist Globlist;
3
 
4
struct Glob{
5
	String	*glob;
6
	Glob	*next;
7
};
8
 
9
struct Globlist{
10
	Glob	*first;
11
	Glob	**l;
12
};
13
 
14
extern	Globlist*	glob(char*);
15
extern	void		globadd(Globlist*, char*, char*);
16
extern	void		globlistfree(Globlist *gl);
17
extern	char*		globiter(Globlist *gl);