Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 214 → Rev 215

/programs/develop/metcc/trunk/libc/string/strchr.c
1,6 → 1,6
char* strchr(const char* string, int c)
{
while (*string!='\0')
while (*string)
{
if (*string==c)
return (char*)string;