ftw.h
来自「CFront1.0的源代码,第一代C++编译器的思想...」· C头文件 代码 · 共 15 行
H
15 行
/* @(#) ftw.h 1.3 1/27/86 17:46:42 *//*ident "@(#)cfront:incl/ftw.h 1.3"*//* * Codes for the third argument to the user-supplied function * which is passed as the second argument to ftw */#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 */typedef int (*PF) ();extern int ftw (const char*, PF, int);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?