Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
6433 siemargl 1
#include 
2
 
145 halyavin 3
char* strchr(const char* string, int c)
4
{
6433 siemargl 5
	do {
6
		if (*string == (char)c)
145 halyavin 7
			return (char*)string;
6433 siemargl 8
	} while (*string++);
9
 
10
    return NULL;
145 halyavin 11
}