C Strlen Implementasi

unsigned long long mystrlen(const char *str) {
    unsigned long long res{};
    for (; *(str + res); res++);
    return res;
}
LukeProducts