1 /* strlen( const char * )
3 This file is part of the Public Domain C Library (PDCLib).
4 Permission is granted to use, modify, and / or redistribute at will.
11 size_t strlen( const char * s )
25 #include "_PDCLIB_test.h"
29 TESTCASE( strlen( abcde ) == 5 );
30 TESTCASE( strlen( "" ) == 0 );