1996-05-23 01:24:20 +08:00
|
|
|
/* myftw.h -- ftw() using lstat() instead of stat() */
|
|
|
|
|
1996-06-08 02:29:21 +08:00
|
|
|
#ifndef _MYFTW_H_
|
|
|
|
#define _MYFTW_H_
|
|
|
|
|
1996-06-19 01:06:32 +08:00
|
|
|
int myftw (const char *dir,
|
|
|
|
int (*func) (const char *file,
|
|
|
|
struct stat *status,
|
|
|
|
int flag),
|
|
|
|
int descriptors);
|
1996-06-08 02:29:21 +08:00
|
|
|
|
|
|
|
#endif _MYFTW_H_
|