]> pd.if.org Git - pdclib/blobdiff - functions/string/strspn.c
Whitespace cleanups.
[pdclib] / functions / string / strspn.c
index 0cf90df051ecbbcce66c8345fcd38119635d5afd..7b55b08ea61a0308b9908c217418c2b81280de9a 100644 (file)
@@ -35,7 +35,8 @@ size_t strspn( const char * s1, const char * s2 )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {
@@ -44,4 +45,5 @@ int main( void )
     TESTCASE( strspn( abcde, abcde ) == 5 );
     return TEST_RESULTS;
 }
+
 #endif