1: /* Vsh will classify a file as one of the following: */
2:
3: #define CL_NULL 0 /* No such file or protected path */
4: #define CL_DIR 1 /* Directory, May NOT be accessable */
5: #define CL_SPCL 2 /* Special device file */
6: #define CL_PROTPLN 3 /* Plane file protected unknown fmt */
7: #define CL_UNKPLN 4 /* Plane file unknown format */
8: #define CL_AOUT 5 /* A.out format */
9: #define CL_AR 6 /* Ar format */
10: #define CL_CPIO 7 /* Cpio format */
11: #define CL_CORE 8 /* Core dump */
12: #define CL_TEXT 9 /* Ascii text */
Defined macros
CL_AR
defined in line
9; used 1 times
CL_DIR
defined in line
4; used 2 times
Usage of this include