《操作系统》的实验代码。
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

13 rader
200 B

10 år sedan
  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__ */