Files
Arquivotheca.Solaris-2.5/lib/libbc/inc/include/ftw.h
seta75D 7c4988eac0 Init
2021-10-11 19:38:01 -03:00

17 lines
385 B
C
Executable File

/* @(#)ftw.h 1.5 90/03/30 SMI; from S5R2 1.1 */
/*
* Codes for the third argument to the user-supplied function
* which is passed as the second argument to ftw
*/
#ifndef _ftw_h
#define _ftw_h
#define FTW_F 0 /* file */
#define FTW_D 1 /* directory */
#define FTW_DNR 2 /* directory without read permission */
#define FTW_NS 3 /* unknown type, stat failed */
#endif /*!_ftw_h*/