]> pd.if.org Git - pdclib/blob - functions/string/strcspn.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / string / strcspn.c
1 /* strcspn( const char *, const char * )
2
3    This file is part of the Public Domain C Library (PDCLib).
4    Permission is granted to use, modify, and / or redistribute at will.
5 */
6
7 #include <string.h>
8
9 #ifndef REGTEST
10
11 size_t strcspn( const char * s1, const char * s2 )
12 {
13     size_t len = 0;
14     const char * p;
15     while ( s1[len] )
16     {
17         p = s2;
18         while ( *p )
19         {
20             if ( s1[len] == *p++ )
21             {
22                 return len;
23             }
24         }
25         ++len;
26     }
27     return len;
28 }
29
30 #endif
31
32 #ifdef TEST
33 #include "_PDCLIB_test.h"
34
35 int main( void )
36 {
37     TESTCASE( strcspn( abcde, "x" ) == 5 );
38     TESTCASE( strcspn( abcde, "xyz" ) == 5 );
39     TESTCASE( strcspn( abcde, "zyx" ) == 5 );
40     TESTCASE( strcspn( abcdx, "x" ) == 4 );
41     TESTCASE( strcspn( abcdx, "xyz" ) == 4 );
42     TESTCASE( strcspn( abcdx, "zyx" ) == 4 );
43     TESTCASE( strcspn( abcde, "a" ) == 0 );
44     TESTCASE( strcspn( abcde, "abc" ) == 0 );
45     TESTCASE( strcspn( abcde, "cba" ) == 0 );
46     return TEST_RESULTS;
47 }
48 #endif