mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
LibC: Implement str{n}casecmp
This commit is contained in:
parent
2f4e7edee5
commit
f0f5dd6cef
Notes:
sideshowbarker
2024-07-19 14:06:58 +09:00
Author: https://github.com/rburchell
Commit: f0f5dd6cef
Pull-request: https://github.com/SerenityOS/serenity/pull/45
Reviewed-by: https://github.com/awesomekling
2 changed files with 32 additions and 0 deletions
|
@ -8,6 +8,8 @@ __BEGIN_DECLS
|
|||
size_t strlen(const char*);
|
||||
int strcmp(const char*, const char*);
|
||||
int strncmp(const char*, const char*, size_t);
|
||||
int strcasecmp(const char*, const char*);
|
||||
int strncasecmp(const char*, const char*, size_t);
|
||||
int memcmp(const void*, const void*, size_t);
|
||||
void* memcpy(void*, const void*, size_t);
|
||||
void* memmove(void*, const void*, size_t);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue