blob: f500615e9b6ba262e823d64721ada911458b5b50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <ftw.h>
#include <sys/stat.h>
#include "_ftw.h"
int ftw(const char * path, int (*fn) (const char *, const struct stat * ptr, int flag), int ndirs)
{
return __ftw(path, fn, ndirs, __FTW_OLD);
}
/*
XOPEN(4)
*/
|