ns-3 Direct Code Execution
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
dce-vfs.h
Go to the documentation of this file.
1 #ifndef SIMU_VFS_H
2 #define SIMU_VFS_H
3 
4 #include <sys/vfs.h>
5 #include <sys/statvfs.h>
6 
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10 
11 int dce_statfs (const char *path, struct statfs *buf);
12 int dce_fstatfs (int fd, struct statfs *buf);
13 int dce_statfs64 (const char *path, struct statfs *buf);
14 int dce_fstatfs64 (int fd, struct statfs *buf);
15 
16 int dce_statvfs (const char *path, struct statvfs *buf);
17 int dce_fstatvfs (int fd, struct statvfs *buf);
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 #endif /* SIMU_VFS_H */