blob: 550adfc0821b0f6b7c0cfe3761c60405e7189b03 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef MYCRYPT_H
#define MYCRYPT_H
/* A simple wrapper to crypt(). Problem with it is that it requires
_XOPEN_SOURCE define which breaks other things. */
char *mycrypt(const char *key, const char *salt);
#endif
|