b4a98e4457
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1015 bbd45198-f89e-11dd-88c7-29a3b14d5316
14 lines
268 B
C
14 lines
268 B
C
#ifndef __RTT_STATFS_H__
|
|
#define __RTT_STATFS_H__
|
|
|
|
#include <rtthread.h>
|
|
|
|
struct statfs
|
|
{
|
|
rt_size_t f_bsize; /* block size */
|
|
rt_size_t f_blocks; /* total data blocks in file system */
|
|
rt_size_t f_bfree; /* free blocks in file system */
|
|
};
|
|
|
|
#endif
|