mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-09 17:51:03 +00:00
17 lines
197 B
C++
17 lines
197 B
C++
|
|
#include <strings.h>
|
||
|
|
#include <assert.h>
|
||
|
|
|
||
|
|
extern "C" {
|
||
|
|
|
||
|
|
int strcasecmp(const char*, const char*)
|
||
|
|
{
|
||
|
|
assert(false);
|
||
|
|
}
|
||
|
|
|
||
|
|
int strncasecmp(const char*, const char*, size_t)
|
||
|
|
{
|
||
|
|
assert(false);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|