mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-02 11:57:43 +08:00
22 lines
376 B
C
22 lines
376 B
C
#ifndef ACL_MYCHOWN_INCLUDE_H
|
|
#define ACL_MYCHOWN_INCLUDE_H
|
|
|
|
#ifdef _cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "../acl_define.h"
|
|
#ifdef ACL_UNIX
|
|
|
|
int acl_mychown(const char *path, const char *s_owner, const char *s_group);
|
|
int acl_myfchown(const int fd, const char *s_owner, const char *s_group);
|
|
|
|
#endif /* ACL_UNIX */
|
|
|
|
#ifdef _cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|