mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-04 21:09:19 +08:00
9697f95b8f
This reverts commit 15d999759e
.
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
|