acl/lib_acl/include/stdlib/unix/acl_safe_open.h
zsxxsz cc05b877a2 first commit acl to github
first commit acl to github
2013-08-18 17:42:25 +08:00

38 lines
551 B
C

#ifndef _SAFE_OPEN_H_INCLUDED_
#define _SAFE_OPEN_H_INCLUDED_
#ifdef __cplusplus
extern "C" {
#endif
#include "../acl_define.h"
#ifdef ACL_UNIX
/*
* System library.
*/
#include <sys/stat.h>
#include <fcntl.h>
/*
* Utility library.
*/
#include "../acl_vstream.h"
#include "../acl_vstring.h"
/*
* External interface.
*/
extern ACL_VSTREAM *acl_safe_open(const char *path, int flags, int mode,
struct stat * st, uid_t user, gid_t group, ACL_VSTRING *why);
#endif /* ACL_UNIX */
#ifdef __cplusplus
}
#endif
#endif