dirent.h

来自「PC_LINT8_w,经过测试」· C头文件 代码 · 共 29 行

H
29
字号

/*  dirent.h  --  POSIX header
    Copyright 1992, Gimpel Software, All Rights Reserved
 */

#if defined(_lint) && !defined(__DIRENT_H)
#define __DIRENT_H

struct dirent
	{
	char        d_name[1];
};



typedef struct
	{
	int _DIR1;
}       DIR;


DIR           *opendir(const char * );
struct dirent *readdir(DIR * );
void           rewinddir(DIR * );
int            closedir(DIR * );


#endif

⌨️ 快捷键说明

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