5 /* strcmp( const char *, const char * )
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 strcmp( const char * s1, const char * s2 )
17 while ( ( *s1 ) && ( *s1 == *s2 ) )
28 #include <_PDCLIB_test.h>
32 char cmpabcde[] = "abcde";
35 TESTCASE( strcmp( abcde, cmpabcde ) == 0 );
36 TESTCASE( strcmp( abcde, abcdx ) < 0 );
37 TESTCASE( strcmp( abcdx, abcde ) > 0 );
38 TESTCASE( strcmp( empty, abcde ) < 0 );
39 TESTCASE( strcmp( abcde, empty ) > 0 );