dirent.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_DIRENT_H
  2. #define _LINUX_DIRENT_H
  3. struct dirent {
  4. long d_ino;
  5. __kernel_off_t d_off;
  6. unsigned short d_reclen;
  7. char d_name[256]; /* We must not include limits.h! */
  8. };
  9. struct dirent64 {
  10. __u64 d_ino;
  11. __s64 d_off;
  12. unsigned short d_reclen;
  13. unsigned char d_type;
  14. char d_name[256];
  15. };
  16. #endif