Lines Matching refs:strncasecmp
1354 check(strncasecmp("a", "a", 5) == 0, 1); in test_strncasecmp()
1355 check(strncasecmp("a", "A", 5) == 0, 2); in test_strncasecmp()
1356 check(strncasecmp("A", "a", 5) == 0, 3); in test_strncasecmp()
1357 check(strncasecmp("a", "b", 5) < 0, 4); in test_strncasecmp()
1358 check(strncasecmp("c", "b", 5) > 0, 5); in test_strncasecmp()
1359 check(strncasecmp("abc", "AbC", 5) == 0, 6); in test_strncasecmp()
1360 check(strncasecmp("0123456789", "0123456789", 10) == 0, 7); in test_strncasecmp()
1361 check(strncasecmp("", "0123456789", 10) < 0, 8); in test_strncasecmp()
1362 check(strncasecmp("AbC", "", 5) > 0, 9); in test_strncasecmp()
1363 check(strncasecmp("AbC", "A", 5) > 0, 10); in test_strncasecmp()
1364 check(strncasecmp("AbC", "Ab", 5) > 0, 11); in test_strncasecmp()
1365 check(strncasecmp("AbC", "ab", 5) > 0, 12); in test_strncasecmp()
1366 check(strncasecmp("0123456789", "AbC", 0) == 0, 13); in test_strncasecmp()
1367 check(strncasecmp("AbC", "abc", 1) == 0, 14); in test_strncasecmp()
1368 check(strncasecmp("AbC", "abc", 2) == 0, 15); in test_strncasecmp()
1369 check(strncasecmp("AbC", "abc", 3) == 0, 16); in test_strncasecmp()
1370 check(strncasecmp("AbC", "abcd", 3) == 0, 17); in test_strncasecmp()
1371 check(strncasecmp("AbC", "abcd", 4) < 0, 18); in test_strncasecmp()
1372 check(strncasecmp("ADC", "abcd", 1) == 0, 19); in test_strncasecmp()
1373 check(strncasecmp("ADC", "abcd", 2) > 0, 20); in test_strncasecmp()