diff options
| author | Dragorn421 <Dragorn421@users.noreply.github.com> | 2024-09-11 10:17:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-11 10:17:47 +0200 |
| commit | cbf9eacf42c25f887589ba50d4ef2cd41cdc9030 (patch) | |
| tree | 1073bdff9206abe866be5c0af6c9bef8a8690b0f /include/libc/string.h | |
| parent | 5441559b30d4419eb25e77abc4ff2eb1f34027aa (diff) | |
[headers 12] Add kaleido_manager.h, move various protos to headers (#2174)
* [headers 12] add kaleido_manager.h, move various protos to headers
* BSS
* bss
Diffstat (limited to 'include/libc/string.h')
| -rw-r--r-- | include/libc/string.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libc/string.h b/include/libc/string.h index 3f9a5cee7..3e2e6be59 100644 --- a/include/libc/string.h +++ b/include/libc/string.h @@ -7,5 +7,7 @@ char* strchr(const char*, int); size_t strlen(const char*); void* memcpy(void*, const void*, size_t); +void* memmove(void* dest, const void* src, size_t len); +void* memset(void* dest, int val, size_t len); #endif |
