mirror of
https://github.com/cc65/cc65.git
synced 2024-12-26 08:32:00 +00:00
initial check-in
git-svn-id: svn://svn.cc65.org/cc65/trunk@3926 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
2961c500f5
commit
9082762519
80
testcode/lib/strnicmp-test.c
Normal file
80
testcode/lib/strnicmp-test.c
Normal file
@ -0,0 +1,80 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#ifdef __ATARI__
|
||||
#include <atari.h>
|
||||
#include <conio.h>
|
||||
#endif
|
||||
|
||||
static int do_test(const char *s1, const char *s2, size_t n)
|
||||
{
|
||||
printf("strnicmp(\"%s\", \"%s\", %d): ", s1, s2, (int)n);
|
||||
return strncasecmp(s1, s2, n);
|
||||
}
|
||||
|
||||
int main(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = do_test("Wurzl", "wURZL", 5);
|
||||
if (ret)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
ret = do_test("Wurzl", "wURZL", 6);
|
||||
if (ret)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
ret = do_test("Wurzl", "wURZL", 10);
|
||||
if (ret)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
ret = do_test("Wurzla", "wURZLB", 10);
|
||||
if (ret >= 0)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
ret = do_test("Wurzla", "wURZLb", 5);
|
||||
if (ret)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
ret = do_test("BLI", "bla", 5);
|
||||
if (ret <= 0)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
ret = do_test("", "bla", 5);
|
||||
if (ret >= 0)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
ret = do_test("BLI", "", 5);
|
||||
if (ret <= 0)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
ret = do_test("", "", 5);
|
||||
if (ret)
|
||||
printf("fail (%d)\n", ret);
|
||||
else
|
||||
printf("OK (%d)\n", ret);
|
||||
|
||||
#ifdef __ATARI__
|
||||
if (_dos_type != 1) {
|
||||
cgetc();
|
||||
}
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user