mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-02 22:29:10 +00:00
LibC: Add strnlen()
This commit is contained in:
parent
376fece51e
commit
60143c8d4e
Notes:
sideshowbarker
2024-07-19 10:01:50 +09:00
Author: https://github.com/awesomekling
Commit: 60143c8d4e
2 changed files with 9 additions and 0 deletions
|
@ -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*);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue