]> pd.if.org Git - pdclib/blobdiff - functions/string/strpbrk.c
Whitespace cleanups.
[pdclib] / functions / string / strpbrk.c
index 1615ce3ff9d75cddfab8c16ec5120274845681e2..e95f0c1776478033fe9ad400464925986fb92081 100644 (file)
@@ -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