Subversion Repositories Kolibri OS

Rev

Rev 215 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
145 halyavin 1
int strlen(const char* string)
2
{
3
	int i;
4
	i=0;
217 victor 5
	while (*string++) i++;
145 halyavin 6
	return i;
7
}