struct glob_t

#include <glob.h>

struct glob_t
{
    // fields

    int gl_pathc;
    int gl_matchc;
    int gl_offs;
    int gl_flags;
    char** gl_pathv;

    // methods

    int gl_errfunc __P((const char*, int));
    void gl_closedir __P((void*));
    struct dirent*gl_readdir __P((void*));
    void*gl_opendir __P((const char*));
    int gl_lstat __P((const char*, struct stat*));
    int gl_stat __P((const char*, struct stat*));
};