опечатка

git-svn-id: svn://kolibrios.org@217 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
victor 2006-11-24 22:06:08 +00:00
parent e1c5ec4c11
commit 957f33b4ba

View File

@ -2,6 +2,6 @@ int strlen(const char* string)
{
int i;
i=0;
while (*string!++) i++;
while (*string++) i++;
return i;
}