]> pd.if.org Git - pdclib/blobdiff - functions/string/strcspn.c
Whitespace cleanups.
[pdclib] / functions / string / strcspn.c
index baf8fc799a6a2dd3cba0e41fefbb8564c29acd55..84f8af15315a393eb28700ce9972040018f137c2 100644 (file)
@@ -30,6 +30,7 @@ size_t strcspn( const char * s1, const char * s2 )
 #endif
 
 #ifdef TEST
+
 #include "_PDCLIB_test.h"
 
 int main( void )
@@ -45,4 +46,5 @@ int main( void )
     TESTCASE( strcspn( abcde, "cba" ) == 0 );
     return TEST_RESULTS;
 }
+
 #endif