diff options
| author | Ada Christine <adachristine18@gmail.com> | 2024-02-22 20:05:51 +0000 |
|---|---|---|
| committer | Ada Christine <adachristine18@gmail.com> | 2024-02-22 20:05:51 +0000 |
| commit | aec58be40927ec0b2a0e6742396f880d52ce38b5 (patch) | |
| tree | 5336b9966808a6d0706e7469d239d1dbc11cb3e2 /api/libc | |
| parent | e97aa65fc42f08fe666a9a21b69d05ab17231920 (diff) | |
kjarna runtime
Diffstat (limited to 'api/libc')
| -rw-r--r-- | api/libc/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/api/libc/string.h b/api/libc/string.h index d1d45d5..849275d 100644 --- a/api/libc/string.h +++ b/api/libc/string.h @@ -7,5 +7,6 @@ void *memmove(void *dest, const void *src, size_t size); void *memset(void *dest, int val, size_t size); int memcmp(const void *str1, const void *str2, size_t count); size_t strlen(const char *s); +int strcmp(const char *s1, const char *s2); unsigned long long strtoull(const char *restrict begin, char **restrict end, int base); |
