LibC: Add strnlen()

This commit is contained in:
Andreas Kling 2020-01-16 22:11:05 +01:00
commit 60143c8d4e
Notes: sideshowbarker 2024-07-19 10:01:50 +09:00
2 changed files with 9 additions and 0 deletions

View file

@ -6,6 +6,7 @@
__BEGIN_DECLS
size_t strlen(const char*);
size_t strnlen(const char*, size_t maxlen);
int strcmp(const char*, const char*);
int strncmp(const char*, const char*, size_t);
int strcasecmp(const char*, const char*);