statfs.h 255 B

12345678910111213
  1. #ifndef __RTT_STATFS_H__
  2. #define __RTT_STATFS_H__
  3. #include <rtthread.h>
  4. struct statfs
  5. {
  6. rt_size_t f_bsize; /* block size */
  7. rt_size_t f_blocks; /* total data blocks in file system */
  8. rt_size_t f_bfree; /* free blocks in file system */
  9. };
  10. #endif