1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 02:24:58 +00:00
serenity/LibC/strings.cpp
2019-02-24 15:20:07 +01:00

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);
}
}