5 /* strlen( const char * )
7 This file is part of the Public Domain C Library (PDCLib).
8 Permission is granted to use, modify, and / or redistribute at will.
15 size_t strlen( const char * s )
28 #include <_PDCLIB_test.h>
33 TESTCASE( strlen( abcde ) == 5 );
34 TESTCASE( strlen( "" ) == 0 );