X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrlen.c;h=c1a620e7eaa0bedf2d8190bdf9021f183caf505f;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=4856d99502254f07569e494c7103ebe183709122;hpb=b1fc26afebd4d557ff89a44bc21767a8704c3809;p=pdclib diff --git a/functions/string/strlen.c b/functions/string/strlen.c index 4856d99..c1a620e 100644 --- a/functions/string/strlen.c +++ b/functions/string/strlen.c @@ -21,7 +21,8 @@ size_t strlen( const char * s ) #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" int main( void ) { @@ -29,4 +30,5 @@ int main( void ) TESTCASE( strlen( "" ) == 0 ); return TEST_RESULTS; } + #endif