blob: 5a0cbe386e320672159e6d3458eaae895467ae44 [file] [log] [blame]
/*
* strrchr.c
*/
#include <string.h>
#include <klibc/compiler.h>
char *strrchr(const char *s, int c)
{
const char *found = NULL;
while ( *s ) {
if ( *s == (char) c )
found = s;
s++;
}
return (char *)found;
}
__ALIAS(char *, rindex, (const char *, int), strrchr)