《操作系统》的实验代码。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
200 B

10 years ago
  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__ */