mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-03 20:38:11 +08:00
16 lines
237 B
C
16 lines
237 B
C
#ifndef __passwd_crypt_include_h__
|
|
#define __passwd_crypt_include_h__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
char* passwd_crypt(const char* in);
|
|
char* passwd_decrypt(const char* in);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|