logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

crypt.h (277B)


  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