]> pd.if.org Git - pdclib/blob - functions/string/strstr.c
Added search functions.
[pdclib] / functions / string / strstr.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* strstr( const char *, const char * )
6
7    This file is part of the Public Domain C Library (PDCLib).
8    Permission is granted to use, modify, and / or redistribute at will.
9 */
10
11 #include <string.h>
12
13 char * strstr( const char * s1, const char * s2 )
14 {
15     const char * p1 = s1;
16     const char * p2;
17     while ( *s1 )
18     {
19         p2 = s2;
20         while ( *p2 && ( *p1 == *p2 ) )
21         {
22             ++p1;
23             ++p2;
24         }
25         if ( ! *p2 )
26         {
27             return (char *) s1;
28         }
29         ++s1;
30         p1 = s1;
31     }
32     return NULL;
33 }