#include <string.h>

size_t strlen (const char * str) {
    register size_t i = 0;
    while(*str++) i++;
    return i;
}