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