Files
Arquivotheca.SunOS-4.1.3/include/ftw.h
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

17 lines
385 B
C

/* @(#)ftw.h 1.1 92/07/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*/