X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrstr.c;h=aee282f3a0d02c34239f19436c0df321e7aca8a2;hb=18dee35aba1ae0fcdecb0cd11d4f3c1a0d94b51e;hp=5c97a750c076400c90bf61520c1f26b9c24e880a;hpb=d6f1494a4f38a212b29a13ee713885058dcf0fe7;p=pdclib diff --git a/functions/string/strstr.c b/functions/string/strstr.c index 5c97a75..aee282f 100644 --- a/functions/string/strstr.c +++ b/functions/string/strstr.c @@ -33,6 +33,7 @@ char * strstr( const char * s1, const char * s2 ) #endif #ifdef TEST + #include "_PDCLIB_test.h" int main( void ) @@ -46,4 +47,5 @@ int main( void ) TESTCASE( strstr( s, "abcde" ) == &s[10] ); return TEST_RESULTS; } + #endif