summaryrefslogtreecommitdiff
path: root/LibC/strings.cpp
blob: 27d4b8135c56dfdffa1fba2983deae518d4eb502 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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);
}

}