Home | History | Annotate | Download | only in util

Lines Matching full:files

195 NEOERR *ne_listdir(const char *path, ULIST **files)
197 return nerr_pass(ne_listdir_fmatch(path, files, NULL, NULL));
205 NEOERR *ne_listdir_match(const char *path, ULIST **files, const char *match)
207 return nerr_pass(ne_listdir_fmatch(path, files, _glob_match, (void *)match));
210 NEOERR *ne_listdir_fmatch(const char *path, ULIST **files, MATCH_FUNC fmatch,
218 if (files == NULL)
221 if (*files == NULL)
228 myfiles = *files;
247 if (err && *files == NULL)
251 else if (*files == NULL)
253 *files = myfiles;