]> pd.if.org Git - pdclib/blobdiff - functions/string/strchr.c
Whitespace cleanups.
[pdclib] / functions / string / strchr.c
index 19a29a80b9ab27ec5356752e6ce47cb022a325ed..621100e04828860d931194276520020469f3168c 100644 (file)
@@ -1,7 +1,3 @@
-/* $Id$ */
-
-/* Release $Name$ */
-
 /* strchr( const char *, int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -27,7 +23,8 @@ char * strchr( const char * s, int c )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {
@@ -39,4 +36,5 @@ int main( void )
     TESTCASE( strchr( abccd, 'c' ) == &abccd[2] );
     return TEST_RESULTS;
 }
+
 #endif