3 /* strspn( const char *, const char * )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
13 size_t strspn( const char * s1, const char * s2 )
40 #include <_PDCLIB_test.h>
44 TESTCASE( strspn( abcde, "abc" ) == 3 );
45 TESTCASE( strspn( abcde, "b" ) == 0 );
46 TESTCASE( strspn( abcde, abcde ) == 5 );