]> pd.if.org Git - pdclib/blob - functions/string/strpbrk.c
b317aed52fa00f4731f4340dc4ae075f3d997ace
[pdclib] / functions / string / strpbrk.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* strpbrk( 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 * strpbrk( const char * s1, const char * s2 )
14 {
15     const char * p1 = s1;
16     const char * p2;
17     while ( *p1 )
18     {
19         p2 = s2;
20         while ( *p2 )
21         {
22             if ( *p1 == *p2++ )
23             {
24                 return (char *) p1;
25             }
26         }
27         ++p1;
28     }
29     return NULL;
30 }
31
32 #ifdef TEST
33 #include <_PDCLIB_test.h>
34
35 int main()
36 {
37     BEGIN_TESTS;
38     TESTCASE( strpbrk( abcde, "x" ) == NULL );
39     TESTCASE( strpbrk( abcde, "xyz" ) == NULL );
40     TESTCASE( strpbrk( abcdx, "x" ) == &abcdx[4] );
41     TESTCASE( strpbrk( abcdx, "xyz" ) == &abcdx[4] );
42     TESTCASE( strpbrk( abcdx, "zyx" ) == &abcdx[4] );
43     TESTCASE( strpbrk( abcde, "a" ) == &abcde[0] );
44     TESTCASE( strpbrk( abcde, "abc" ) == &abcde[0] );
45     TESTCASE( strpbrk( abcde, "cba" ) == &abcde[0] );
46     return TEST_RESULTS;
47 }
48 #endif