X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrcspn.c;h=84f8af15315a393eb28700ce9972040018f137c2;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=5239d26f635cd4fdfd20a535b54bcd51d37541a3;hpb=b08f4b52b1cd1f7a9553c0f357a7c90859fa3e73;p=pdclib diff --git a/functions/string/strcspn.c b/functions/string/strcspn.c index 5239d26..84f8af1 100644 --- a/functions/string/strcspn.c +++ b/functions/string/strcspn.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* strcspn( const char *, const char * ) This file is part of the Public Domain C Library (PDCLib). @@ -32,7 +30,8 @@ size_t strcspn( const char * s1, const char * s2 ) #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" int main( void ) { @@ -47,4 +46,5 @@ int main( void ) TESTCASE( strcspn( abcde, "cba" ) == 0 ); return TEST_RESULTS; } + #endif