diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-09-13 15:21:45 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-09-13 15:21:45 +0900 |
| commit | d8165f2b38c6405d506649d93112bad62d3d9ec0 (patch) | |
| tree | 91e805adbe9ad1ee334d1096fc656af3a603ab35 /src/std.h | |
| parent | 08a03629004cf6dd5e3beaab1af422483bb0bd48 (diff) | |
| download | ducc-d8165f2b38c6405d506649d93112bad62d3d9ec0.tar.gz ducc-d8165f2b38c6405d506649d93112bad62d3d9ec0.tar.zst ducc-d8165f2b38c6405d506649d93112bad62d3d9ec0.zip | |
feat: include <string.h>
Diffstat (limited to 'src/std.h')
| -rw-r--r-- | src/std.h | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -6,18 +6,8 @@ int atoi(const char*); void* calloc(size_t, size_t); void exit(int); -void* memcpy(void*, const void*, size_t); -void* memmove(void*, const void*, size_t); -void* memset(void*, int, size_t); int mkstemps(char*, int); void* realloc(void*, size_t); -int strcmp(const char*, const char*); -size_t strlen(const char*); -int strncmp(const char*, const char*, size_t); -char* strdup(const char*); -char* strndup(const char*, size_t); -char* strstr(const char*, const char*); -char* strrchr(const char*, int); long strtol(const char*, char**, int); int system(const char*); |
