1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef _CRYPT_H
- #define _CRYPT_H 1
- #include <features.h>
- __BEGIN_DECLS
- extern char *crypt (const char *__key, const char *__salt);
- extern void setkey (const char *__key);
- extern void encrypt (char *__block, int __edflag);
- __END_DECLS
- #endif
|