size_t __cdecl strlen ( const char * str ) { const char *eos = str; while( *eos++ ); return( eos - str - 1 ); }