]> pd.if.org Git - pdclib/blobdiff - functions/string/memchr.c
Added template implementation files.
[pdclib] / functions / string / memchr.c
diff --git a/functions/string/memchr.c b/functions/string/memchr.c
new file mode 100644 (file)
index 0000000..83d6f17
--- /dev/null
@@ -0,0 +1,17 @@
+// ----------------------------------------------------------------------------
+// $Id$
+// ----------------------------------------------------------------------------
+// Public Domain C Library - http://pdclib.sourceforge.net
+// This code is Public Domain. Use, modify, and redistribute at will.
+// ----------------------------------------------------------------------------
+
+// ----------------------------------------------------------------------------
+// C++
+
+const void * memchr( const void * s, int c, size_t n ) { /* TODO */ };
+void * memchr( void * s, int c, size_t n ) { /* TODO */ };
+
+// ----------------------------------------------------------------------------
+// Standard C
+
+void * memchr( const void * s, int c, size_t n ) { /* TODO */ };