statfs.h 323 B

123456789101112131415
  1. struct statvfs {
  2. unsigned long f_type;
  3. unsigned long f_bsize;
  4. fsblkcnt_t f_blocks;
  5. fsblkcnt_t f_bfree;
  6. fsblkcnt_t f_bavail;
  7. fsfilcnt_t f_files;
  8. fsfilcnt_t f_ffree;
  9. unsigned long f_fsid;
  10. unsigned long f_namemax;
  11. unsigned long f_frsize;
  12. fsfilcnt_t f_favail;
  13. unsigned long f_flag;
  14. unsigned long __reserved[2];
  15. };