#include size_t mystrlen(const char *str) { size_t i=0; while( *str++ != '\0' ) i++; return i; }