X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=include%2Fcrypt.h;fp=include%2Fcrypt.h;h=07de21698c7e1918fdb520dc8e93db776ad8180e;hp=0000000000000000000000000000000000000000;hb=cdf51506ce895286011ff0abe5434557845108ee;hpb=9abab94b211c5103e3f6baf97ad76523618a553c diff --git a/include/crypt.h b/include/crypt.h new file mode 100644 index 00000000..07de2169 --- /dev/null +++ b/include/crypt.h @@ -0,0 +1,20 @@ +#ifndef _CRYPT_H +#define _CRYPT_H + +#ifdef __cplusplus +extern "C" { +#endif + +struct crypt_data { + int initialized; + char __buf[256]; +}; + +char *crypt(const char *, const char *); +char *crypt_r(const char *, const char *, struct crypt_data *); + +#ifdef __cplusplus +} +#endif + +#endif