1#pragma once
2
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7struct crypt_data {
8    int initialized;
9    char __buf[256];
10};
11
12char* crypt(const char*, const char*);
13char* crypt_r(const char*, const char*, struct crypt_data*);
14
15#ifdef __cplusplus
16}
17#endif
18