7 lines
104 B
C
7 lines
104 B
C
#include <string.h>
|
|
#include <strings.h>
|
|
|
|
char *rindex(const char *s, int c)
|
|
{
|
|
return strrchr(s, c);
|
|
}
|