《操作系统》的实验代码。
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
200 B

  1. #ifndef __LIBS_DIRENT_H__
  2. #define __LIBS_DIRENT_H__
  3. #include <defs.h>
  4. #include <unistd.h>
  5. struct dirent {
  6. off_t offset;
  7. char name[FS_MAX_FNAME_LEN + 1];
  8. };
  9. #endif /* !__LIBS_DIRENT_H__ */