]> pd.if.org Git - pdclib/blobdiff - functions/string/strlen.c
Whitespace cleanups.
[pdclib] / functions / string / strlen.c
index 042582abbde91aa335e09529bbcbdd3be59da1a7..c1a620e7eaa0bedf2d8190bdf9021f183caf505f 100644 (file)
@@ -21,6 +21,7 @@ size_t strlen( const char * s )
 #endif
 
 #ifdef TEST
+
 #include "_PDCLIB_test.h"
 
 int main( void )
@@ -29,4 +30,5 @@ int main( void )
     TESTCASE( strlen( "" ) == 0 );
     return TEST_RESULTS;
 }
+
 #endif