acl  3.5.3.0
acl_mychown.h
浏览该文件的文档.
1 #ifndef ACL_MYCHOWN_INCLUDE_H
2 #define ACL_MYCHOWN_INCLUDE_H
3 
4 #ifdef _cplusplus
5 extern "C" {
6 #endif
7 
8 #include "../acl_define.h"
9 #ifdef ACL_UNIX
10 
11 int acl_mychown(const char *path, const char *s_owner, const char *s_group);
12 int acl_myfchown(const int fd, const char *s_owner, const char *s_group);
13 
14 #endif /* ACL_UNIX */
15 
16 #ifdef _cplusplus
17 }
18 #endif
19 
20 #endif
21