ns-3 Direct Code Execution
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
dce-stat.h
Go to the documentation of this file.
1 #ifndef DCE_STAT_H
2 #define DCE_STAT_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 int dce___xstat (int ver, const char *path, struct stat *buf);
9 int dce___fxstat (int ver, int fd, struct stat *buf);
10 int dce___lxstat (int ver, const char *pathname, struct stat *buf);
11 
12 int dce___xstat64 (int ver, const char *path, struct stat64 *buf);
13 int dce___fxstat64 (int ver, int fd, struct stat64 *buf);
14 int dce___lxstat64 (int ver, const char *pathname, struct stat64 *buf);
15 int dce___fxstatat (int ver, int fd, const char *filename,
16  struct stat *buf, int flag);
17 int dce_fstat (int fd, struct stat *buf);
18 int dce_fstat64 (int fd, struct stat64 *buf);
19 
20 int dce_mkdir (const char *pathname, mode_t mode);
21 
22 #ifdef __cplusplus
23 }
24 #endif
25 
26 #endif /* DCE_STAT_H */