dirent.h
来自「微软的基于HMM的人脸识别原代码, 非常经典的说」· C头文件 代码 · 共 22 行
H
22 行
#ifndef _SYS_DIRENTH
#define _SYS_DIRENTH
struct dirent {
ino_t d_ino; /* file number of entry */
unsigned short d_reclen; /* length of this record */
unsigned short d_namlen; /* length of string in d_name */
char d_name[256]; /* DUMMY NAME LENGTH */
/* the real maximum length is */
/* returned by pathconf() */
/* At this time, this MUST */
/* be 256 -- the kernel */
/* requires it */
};
#endif /* _SYS_DIRENTH */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?