X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstring%2Fstrncmp.c;h=1e9119dbd56ec0d70888a681a257452bad549e4d;hp=75b399d1c3298cc9f69181b48f59aab0521b2d90;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hpb=2040228f27d623585d339dec175c4e779ca9edb5 diff --git a/functions/string/strncmp.c b/functions/string/strncmp.c index 75b399d..1e9119d 100644 --- a/functions/string/strncmp.c +++ b/functions/string/strncmp.c @@ -29,6 +29,7 @@ int strncmp( const char * s1, const char * s2, size_t n ) #endif #ifdef TEST + #include "_PDCLIB_test.h" int main( void ) @@ -49,4 +50,5 @@ int main( void ) TESTCASE( strncmp( abcde, cmpabcd_, 10 ) < 0 ); return TEST_RESULTS; } + #endif