]> pd.if.org Git - pdclib/blobdiff - functions/string/strspn.c
Whitespace cleanups.
[pdclib] / functions / string / strspn.c
index 78ee1aa04e47ccbd201c8ab29ea6ebf77d1bee94..7b55b08ea61a0308b9908c217418c2b81280de9a 100644 (file)
@@ -1,7 +1,3 @@
-/* $Id$ */
-
-/* Release $Name$ */
-
 /* strspn( const char *, const char * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -39,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 )
 {
@@ -48,4 +45,5 @@ int main( void )
     TESTCASE( strspn( abcde, abcde ) == 5 );
     return TEST_RESULTS;
 }
+
 #endif