diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-08-11 15:19:18 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-08-15 10:06:21 +0900 |
| commit | 9c12de31ab03385cea3b7bc78582ef4fdb9b22cc (patch) | |
| tree | 715f6d472dbf110d864806039f743977c6c90ba7 /std.h | |
| parent | fd7d82869eb42d086174ec02938b49e4f233c319 (diff) | |
| download | ducc-9c12de31ab03385cea3b7bc78582ef4fdb9b22cc.tar.gz ducc-9c12de31ab03385cea3b7bc78582ef4fdb9b22cc.tar.zst ducc-9c12de31ab03385cea3b7bc78582ef4fdb9b22cc.zip | |
feat: grow dynamic array
Diffstat (limited to 'std.h')
| -rw-r--r-- | std.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -23,6 +23,7 @@ void* memcpy(void*, void*, size_t); void* memmove(void*, void*, size_t); void* memset(void*, int, size_t); int printf(const char*, ...); +void* realloc(void*, size_t); int sprintf(char*, const char*, ...); int strcmp(const char*, const char*); size_t strlen(const char*); |
