@@ -0,0 +1,9 @@
int strlen(char* str)
{
int len = 0;
while (*str++)
len++;
}
return len;
The note is not visible to the blocked user.