123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #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
|