mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-14 08:50:53 +08:00
21 lines
247 B
C
21 lines
247 B
C
#ifndef ACL_USERNAME_INCLUDE_H
|
|
#define ACL_USERNAME_INCLUDE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "../acl_define.h"
|
|
#ifdef ACL_UNIX
|
|
|
|
const char *acl_username(void);
|
|
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|