]> pd.if.org Git - pdclib/blobdiff - functions/string/memchr.c
Added test driver.
[pdclib] / functions / string / memchr.c
index 6a09649903787a88a28640159a7e6bb87d16e95d..75809e079d62a7b35a789ca863cd113d059287a4 100644 (file)
@@ -1,16 +1,18 @@
-// ----------------------------------------------------------------------------
-// $Id$
-// ----------------------------------------------------------------------------
-// Public Domain C Library - http://pdclib.sourceforge.net
-// This code is Public Domain. Use, modify, and redistribute at will.
-// ----------------------------------------------------------------------------
+/* $Id$ */
 
-#include <__size_t.h>
-#include <__NULL.h>
+/* Release $Name$ */
 
-void * memchr( const void * src, int c, size_t n )
+/* memchr( const void *, int, size_t )
+
+   This file is part of the Public Domain C Library (PDCLib).
+   Permission is granted to use, modify, and / or redistribute at will.
+*/
+
+#include <string.h>
+
+void * memchr( const void * s, int c, size_t n )
 {
-    const unsigned char * p = (const unsigned char *) src;
+    const unsigned char * p = (const unsigned char *) s;
     while ( n-- )
     {
         if ( *p == (unsigned char) c )
@@ -21,3 +23,18 @@ void * memchr( const void * src, int c, size_t n )
     }
     return NULL;
 }
+
+#ifdef TEST
+#include <_PDCLIB_test.h>
+
+int main()
+{
+    BEGIN_TESTS;
+    TESTCASE( memchr( abcde, 'c', 5 ) == &abcde[2] );
+    TESTCASE( memchr( abcde, 'a', 1 ) == &abcde[0] );
+    TESTCASE( memchr( abcde, 'a', 0 ) == NULL );
+    TESTCASE( memchr( abcde, '\0', 5 ) == NULL );
+    TESTCASE( memchr( abcde, '\0', 6 ) == &abcde[5] );
+    return TEST_RESULTS;
+}
+#endif