Tenok
A Linux-like Real-Time Operating System for Robotics and Internet of Things
statfs.h
Go to the documentation of this file.
1 
4 #ifndef _TENOK_SYS_STATFS_H
5 #define _TENOK_SYS_STATFS_H
6 
7 #include <sys/types.h>
8 
9 struct statfs {
10  long f_type;
11  long f_bsize;
12  long f_blocks;
13  long f_bfree;
14  long f_bavail;
15  long f_files;
16  long f_ffree;
17  long f_namelen;
18 };
19 
20 int statfs(const char *path, struct statfs *buf);
21 
22 #endif
Definition: statfs.h:9