1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:47:35 +00:00

LibC: Add strnlen()

This commit is contained in:
Andreas Kling 2020-01-16 22:11:05 +01:00
parent 376fece51e
commit 60143c8d4e
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*);