X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstring%2Fstrpbrk.c;h=e95f0c1776478033fe9ad400464925986fb92081;hp=1615ce3ff9d75cddfab8c16ec5120274845681e2;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hpb=2040228f27d623585d339dec175c4e779ca9edb5 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