X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrcspn.c;h=84f8af15315a393eb28700ce9972040018f137c2;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=9d6663ebcfb59267c5f9fb23a561dc8fd5bc7c42;hpb=b1fc26afebd4d557ff89a44bc21767a8704c3809;p=pdclib diff --git a/functions/string/strcspn.c b/functions/string/strcspn.c index 9d6663e..84f8af1 100644 --- a/functions/string/strcspn.c +++ b/functions/string/strcspn.c @@ -30,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 ) { @@ -45,4 +46,5 @@ int main( void ) TESTCASE( strcspn( abcde, "cba" ) == 0 ); return TEST_RESULTS; } + #endif