Crafter.Build/binlib/wasi-sysroot-28.0/include/wasm32-wasip1/crypt.h

20 lines
277 B
C
Raw Permalink Normal View History

2025-11-09 18:56:24 +01:00
#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