Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 216 → Rev 217

/programs/develop/metcc/trunk/libc/string/strlen.c
2,6 → 2,6
{
int i;
i=0;
while (*string!++) i++;
while (*string++) i++;
return i;
}