Subversion Repositories Kolibri OS

Rev

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

Rev 300 Rev 324
Line 1... Line 1...
1
int strlen(const char* string)
1
unsigned 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;