mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-16 01:40:52 +08:00
cc05b877a2
first commit acl to github
18 lines
243 B
C
18 lines
243 B
C
#ifndef __ACL_SAFE_INCLUDE_H__
|
|
#define __ACL_SAFE_INCLUDE_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "acl_define.h"
|
|
|
|
ACL_API int acl_unsafe(void);
|
|
ACL_API char *acl_safe_getenv(const char*name);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|