]> git.proxmox.com Git - wasi-libc.git/blob - basics/include/string.h
Add initial files.
[wasi-libc.git] / basics / include / string.h
1 #ifndef __wasm_sysroot_string_h
2 #define __wasm_sysroot_string_h
3
4 #define __need_size_t
5 #define __need_NULL
6 #include <stddef.h>
7
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11
12 void *memcpy(void *dst, const void *src, size_t n);
13 void *memmove(void *dst, const void *src, size_t n);
14 void *memset(void *dst, int c, size_t n);
15
16 #ifdef __cplusplus
17 }
18 #endif
19
20 #endif