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