Subversion Repositories Kolibri OS

Rev

Rev 215 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

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