summaryrefslogtreecommitdiff
path: root/lib/mlibc/tests/ansi/wcsncasecmp.c
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-03-07 17:28:52 -0500
committerIan Moffett <ian@osmora.org>2024-03-07 18:24:51 -0500
commitf5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch)
tree93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/tests/ansi/wcsncasecmp.c
parentbd5969fc876a10b18613302db7087ef3c40f18e1 (diff)
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/tests/ansi/wcsncasecmp.c')
-rw-r--r--lib/mlibc/tests/ansi/wcsncasecmp.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/mlibc/tests/ansi/wcsncasecmp.c b/lib/mlibc/tests/ansi/wcsncasecmp.c
deleted file mode 100644
index fcbe98f..0000000
--- a/lib/mlibc/tests/ansi/wcsncasecmp.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <assert.h>
-#include <wchar.h>
-
-int main() {
- assert(!wcsncasecmp(L"foo", L"foo", 3));
- assert(!wcsncasecmp(L"foo", L"FOO", 3));
- assert(!wcsncasecmp(L"fooa", L"FOOB", 3));
- assert(wcsncasecmp(L"foo", L"bar", 3));
- assert(!wcsncasecmp(L"fooa", L"FOOA", 4));
- assert(!wcsncasecmp(L"123abc", L"123AbC", 6));
-}