X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrspn.c;h=7b55b08ea61a0308b9908c217418c2b81280de9a;hb=b3b47892170124cf28a2cfb5ff4aeb227989aa21;hp=a546e94f45ce9cd6c0e74e5b828b3472eb314788;hpb=b08f4b52b1cd1f7a9553c0f357a7c90859fa3e73;p=pdclib diff --git a/functions/string/strspn.c b/functions/string/strspn.c index a546e94..7b55b08 100644 --- a/functions/string/strspn.c +++ b/functions/string/strspn.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* strspn( const char *, const char * ) This file is part of the Public Domain C Library (PDCLib). @@ -37,7 +35,8 @@ size_t strspn( const char * s1, const char * s2 ) #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" int main( void ) { @@ -46,4 +45,5 @@ int main( void ) TESTCASE( strspn( abcde, abcde ) == 5 ); return TEST_RESULTS; } + #endif