dir.h

来自「gdb-6.0 linux 下的调试工具」· C头文件 代码 · 共 24 行

H
24
字号
/* The <dir.h> header gives the layout of a directory. */#pragma once#ifndef _DIR_H#define _DIR_H#ifndef _TYPES_H		/* not quite right */#include <sys/types.h>#endif#define	DIRBLKSIZ	512	/* size of directory block */#ifndef DIRSIZ#define	DIRSIZ	14#endifstruct direct {  ino_t d_ino;  char d_name[DIRSIZ];};#endif /* _DIR_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?