EMILE/libunix/strlen.c
2005-11-08 02:04:54 +00:00

12 lines
106 B
C

int strlen(const char* s)
{
int len;
if (!s) return 0;
len = 0;
while (*s++) len++;
return len;
}