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

Version Path
webruby-0.2.7 modules/emscripten/system/include/libc/crypt.h
webruby-0.2.5 modules/emscripten/system/include/libc/crypt.h
webruby-0.2.4 modules/emscripten/system/include/libc/crypt.h
webruby-0.2.2 modules/emscripten/system/include/libc/crypt.h
webruby-0.2.1 modules/emscripten/system/include/libc/crypt.h