mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-19 05:12:45 +03:00
957f33b4ba
git-svn-id: svn://kolibrios.org@217 a494cfbc-eb01-0410-851d-a64ba20cac60
8 lines
91 B
C
8 lines
91 B
C
int strlen(const char* string)
|
|
{
|
|
int i;
|
|
i=0;
|
|
while (*string++) i++;
|
|
return i;
|
|
}
|