5 /* strncmp( const char *, const char *, size_t )
7 This file is part of the Public Domain C Library (PDCLib).
8 Permission is granted to use, modify, and / or redistribute at will.
15 int strncmp( const char * s1, const char * s2, size_t n )
17 while ( n && ( *s1 == *s2 ) )
36 #include <_PDCLIB_test.h>
40 char cmpabcde[] = "abcde";
44 TESTCASE( strncmp( abcde, cmpabcde, 5 ) == 0 );
45 TESTCASE( strncmp( abcde, abcdx, 5 ) < 0 );
46 TESTCASE( strncmp( abcdx, abcde, 5 ) > 0 );
47 TESTCASE( strncmp( empty, abcde, 5 ) < 0 );
48 TESTCASE( strncmp( abcde, empty, 5 ) > 0 );
49 TESTCASE( strncmp( abcde, abcdx, 4 ) == 0 );
50 TESTCASE( strncmp( abcde, x, 0 ) == 0 );
51 TESTCASE( strncmp( abcde, x, 1 ) < 0 );