home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Club Elmshorn Atari PD
/
CCE_PD.iso
/
pc
/
0400
/
CCE_0423.ZIP
/
CCE_0423.PD
/
INCLUD83.ZOO
/
ftw.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-07-20
|
513b
|
29 lines
/*
** <FTW.H>
** Header values for the third parameter to the user-supplied function
** for ftw().
**
*/
#ifndef _FTW_H
#define _FTW_H
#ifdef __cplusplus
extern "C" {
#endif
#define FTW_F 0 /* A normal file */
#define FTW_D 1 /* A directory */
#define FTW_DNR 2 /* Something opendir(3) failed on */
#define FTW_NS 3 /* Something stat(2) failed on */
__EXTERN int ftw
__PROTO((char *path, int (*fn)(char *, struct stat *, int), int param));
#ifdef __cplusplus
}
#endif
#endif /* _FTW_H */