1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 10:01:13 +09:00

LibC: Deduplicate declaration of strcasecmp

This commit is contained in:
Ben Wiederhake 2020-08-24 23:11:09 +02:00 committed by Andreas Kling
parent 9a25dd99c3
commit cd93fb9656
Notes: sideshowbarker 2024-07-19 03:09:15 +09:00
2 changed files with 1 additions and 2 deletions

View file

@ -37,6 +37,7 @@
#include <LibCore/Notifier.h>
#include <pwd.h>
#include <stdio.h>
#include <strings.h>
#define IRC_DEBUG

View file

@ -35,8 +35,6 @@ 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*);
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);