mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
16 lines
197 B
C++
16 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);
|
|
}
|
|
|
|
}
|