]> pd.if.org Git - pdclib/blobdiff - functions/string/strlen.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / string / strlen.c
index 17ab3cfd948b4331b43904a9f8f959b6db011347..042582abbde91aa335e09529bbcbdd3be59da1a7 100644 (file)
@@ -1,7 +1,3 @@
-/* $Id$ */
-
-/* Release $Name$ */
-
 /* strlen( const char * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -25,11 +21,10 @@ size_t strlen( const char * s )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
-int main()
+int main( void )
 {
-    BEGIN_TESTS;
     TESTCASE( strlen( abcde ) == 5 );
     TESTCASE( strlen( "" ) == 0 );
     return TEST_RESULTS;