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