#ifndef CRYPT_H #define CRYPT_H #ifdef __cplusplus extern "C" { #endif char *crypt(char *key, char *salt); #ifdef __cplusplus } #endif #endif