would the workings of strlen() be something like this?
int strlen(const char * str)
{
int size = 0;
while (!!*str)
size++;
return size;
}
any feedback would be appreciated. also i have learned that !! will convert a value to an actual bool eg. !!104 = 1