kolibrios/programs/develop/ktcc/trunk/libc/string/strrchr.c

17 lines
202 B
C
Raw Normal View History

#include <string.h>
char* strrchr(const char* s,int c)
{
char* res;
res=(char*)0;
while (1)
{
if (*s==(char)c)
res=(char*)s;
if (*s=='\0')
break;
s++;
}
return res;
}