mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-08 06:44:27 +00:00
Rename include dir to match the convention: from `wasm32-wasi` to `wasm-wasi-musl` Add building stubs which will be used to build and cache WASI libc sysroot.
20 lines
277 B
C
Vendored
20 lines
277 B
C
Vendored
#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
|