dirent.h

来自「这是又一个C语言解释器, 我们可以方便地扩展其功能, 并将其用于我们的工作中」· C头文件 代码 · 共 22 行

H
22
字号
#ifndef _SYS_DIRENTH#define _SYS_DIRENTHstruct  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 + -
显示快捷键?