1234567891011121314151617181920212223242526272829303132333435 |
- #include <stdlib.h>
- #include <string.h>
- #include <errno.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <unistd.h>
- #include <dirent.h>
- #include <malloc.h>
- #include <fnmatch.h>
- #include <glob.h>
- __ptr_t (*__glob_opendir_hook) __P ((const char *directory));
- const char *(*__glob_readdir_hook) __P ((__ptr_t stream));
- void (*__glob_closedir_hook) __P ((__ptr_t stream));
|