forked from KolibriOS/kolibrios
ace23ebbe2
git-svn-id: svn://kolibrios.org@6433 a494cfbc-eb01-0410-851d-a64ba20cac60
17 lines
202 B
C
17 lines
202 B
C
#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;
|
|
}
|