crypt.h 277 B

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