]> pd.if.org Git - pdclib/blobdiff - functions/string/strpbrk.c
Whitespace cleanups.
[pdclib] / functions / string / strpbrk.c
index 41211dbd55970a8b09a898490065ac3e9b6a114c..e95f0c1776478033fe9ad400464925986fb92081 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* strpbrk( const char *, const char * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -32,7 +30,8 @@ char * strpbrk( const char * s1, const char * s2 )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {
@@ -46,4 +45,5 @@ int main( void )
     TESTCASE( strpbrk( abcde, "cba" ) == &abcde[0] );
     return TEST_RESULTS;
 }
+
 #endif