]> pd.if.org Git - pdclib/blobdiff - functions/string/strchr.c
Comment cleanups.
[pdclib] / functions / string / strchr.c
index a575f6deea1b15e44b65ef94826a1f1ddc607b29..5f8db573773410349c8fd16eb5b812254bef0eb6 100644 (file)
@@ -1,7 +1,3 @@
-/* $Id$ */
-
-/* Release $Name$ */
-
 /* strchr( const char *, int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -10,6 +6,8 @@
 
 #include <string.h>
 
+#ifndef REGTEST
+
 char * strchr( const char * s, int c )
 {
     do
@@ -22,4 +20,19 @@ char * strchr( const char * s, int c )
     return NULL;
 }
 
-#warning Test driver missing.
+#endif
+
+#ifdef TEST
+#include <_PDCLIB_test.h>
+
+int main( void )
+{
+    char abccd[] = "abccd";
+    TESTCASE( strchr( abccd, 'x' ) == NULL );
+    TESTCASE( strchr( abccd, 'a' ) == &abccd[0] );
+    TESTCASE( strchr( abccd, 'd' ) == &abccd[4] );
+    TESTCASE( strchr( abccd, '\0' ) == &abccd[5] );
+    TESTCASE( strchr( abccd, 'c' ) == &abccd[2] );
+    return TEST_RESULTS;
+}
+#endif