#ifndef CRYPT_H
#define CRYPT_H

#ifdef __cplusplus
extern "C" {
#endif

char *crypt(const char *key, const char *salt);

#ifdef __cplusplus
}
#endif

#endif
