]> pd.if.org Git - pdclib/blobdiff - functions/string/strchr.c
Added template implementation files.
[pdclib] / functions / string / strchr.c
diff --git a/functions/string/strchr.c b/functions/string/strchr.c
new file mode 100644 (file)
index 0000000..fb16904
--- /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 char * strchr( const char * s, int c ) { /* TODO */ };
+char * strchr( char * s, int c ) { /* TODO */ };
+
+// ----------------------------------------------------------------------------
+// Standard C
+
+char * strchr( const char * s, int c ) { /* TODO */ };