X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrncmp.c;h=cbd16e4fe83ab305ad550f1ecd5ac5acca5b545e;hb=b08f4b52b1cd1f7a9553c0f357a7c90859fa3e73;hp=7f398fa9b2b9be4bce4763afabf4bf737e4bf2d2;hpb=ba5eff8dd9b426485e1559b5d6204692d155d9e8;p=pdclib diff --git a/functions/string/strncmp.c b/functions/string/strncmp.c index 7f398fa..cbd16e4 100644 --- a/functions/string/strncmp.c +++ b/functions/string/strncmp.c @@ -1,7 +1,5 @@ /* $Id$ */ -/* Release $Name$ */ - /* strncmp( const char *, const char *, size_t ) This file is part of the Public Domain C Library (PDCLib). @@ -10,6 +8,8 @@ #include +#ifndef REGTEST + int strncmp( const char * s1, const char * s2, size_t n ) { while ( n && ( *s1 == *s2 ) ) @@ -28,11 +28,24 @@ int strncmp( const char * s1, const char * s2, size_t n ) } } -#warning Test driver missing. +#endif #ifdef TEST -int main() +#include <_PDCLIB_test.h> + +int main( void ) { - return 0; + char cmpabcde[] = "abcde"; + char empty[] = ""; + char x[] = "x"; + TESTCASE( strncmp( abcde, cmpabcde, 5 ) == 0 ); + TESTCASE( strncmp( abcde, abcdx, 5 ) < 0 ); + TESTCASE( strncmp( abcdx, abcde, 5 ) > 0 ); + TESTCASE( strncmp( empty, abcde, 5 ) < 0 ); + TESTCASE( strncmp( abcde, empty, 5 ) > 0 ); + TESTCASE( strncmp( abcde, abcdx, 4 ) == 0 ); + TESTCASE( strncmp( abcde, x, 0 ) == 0 ); + TESTCASE( strncmp( abcde, x, 1 ) < 0 ); + return TEST_RESULTS; } #endif