]> pd.if.org Git - pdclib/blob - functions/string/strstr.c
Added template implementation files.
[pdclib] / functions / string / strstr.c
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7
8 // ----------------------------------------------------------------------------
9 // C++
10
11 const char * strstr( const char * s1, const char * s2 ) { /* TODO */ };
12 char * strstr( char * s1, const char * s2 ) { /* TODO */ };
13
14 // ----------------------------------------------------------------------------
15 // Standard C
16
17 char * strstr( const char * s1, const char * s2 ) { /* TODO */ };