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