#include "my_strlen.h" size_t my_strlen(const char *s) { size_t i; for (i = 0; s[i]; i++) { continue; } return i; }