Sha256: 26565e8fc37e6cff0f870dd5e7a1bc2035a494470b35d05114b0404673990bed
Contents?: true
Size: 277 Bytes
Versions: 5
Compression:
Stored size: 277 Bytes
Contents
#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
Version data entries
5 entries across 5 versions & 1 rubygems