plan9fox/sys/src/cmd/ip/glob.h
2011-03-30 19:35:09 +03:00

18 lines
308 B
C

typedef struct Glob Glob;
typedef struct Globlist Globlist;
struct Glob{
String *glob;
Glob *next;
};
struct Globlist{
Glob *first;
Glob **l;
};
extern Globlist* glob(char*);
extern void globadd(Globlist*, char*, char*);
extern void globlistfree(Globlist *gl);
extern char* globiter(Globlist *gl);