blob: f9e9c57b13d344cda4d4131b370a309ce848f7f7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef GLOB_H
#define GLOB_H
#include <stddef.h>
typedef struct {
size_t gl_pathc; // Count of paths matched by pattern.
char **gl_pathv; // Pointer to a list of matched pathnames
size_t gl_offs; // Slots to reserve at the beginning of gl_pathv.
} glob_t;
#endif
|