X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrpbrk.c;h=e95f0c1776478033fe9ad400464925986fb92081;hb=b3b47892170124cf28a2cfb5ff4aeb227989aa21;hp=1615ce3ff9d75cddfab8c16ec5120274845681e2;hpb=d6f1494a4f38a212b29a13ee713885058dcf0fe7;p=pdclib diff --git a/functions/string/strpbrk.c b/functions/string/strpbrk.c index 1615ce3..e95f0c1 100644 --- a/functions/string/strpbrk.c +++ b/functions/string/strpbrk.c @@ -30,6 +30,7 @@ char * strpbrk( const char * s1, const char * s2 ) #endif #ifdef TEST + #include "_PDCLIB_test.h" int main( void ) @@ -44,4 +45,5 @@ int main( void ) TESTCASE( strpbrk( abcde, "cba" ) == &abcde[0] ); return TEST_RESULTS; } + #endif