X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrlen.c;h=c1a620e7eaa0bedf2d8190bdf9021f183caf505f;hb=15cd62244797b9aeb3279484f8e760778c52bc4e;hp=c9ac46568e17a30d15ab84efded6320f36459a4f;hpb=b08f4b52b1cd1f7a9553c0f357a7c90859fa3e73;p=pdclib diff --git a/functions/string/strlen.c b/functions/string/strlen.c index c9ac465..c1a620e 100644 --- a/functions/string/strlen.c +++ b/functions/string/strlen.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* strlen( const char * ) This file is part of the Public Domain C Library (PDCLib). @@ -23,7 +21,8 @@ size_t strlen( const char * s ) #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" int main( void ) { @@ -31,4 +30,5 @@ int main( void ) TESTCASE( strlen( "" ) == 0 ); return TEST_RESULTS; } + #endif