summaryrefslogtreecommitdiff
path: root/src/glob/glob_t.h
blob: 21fcf4f674490fe3b12627182bfb222a22312464 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <glob.h>

typedef struct {
	size_t	gl_pathc;
	char **	gl_pathv;
	size_t	gl_offs;
} glob_t;
/*
POSIX(2)
*/