mirror of
https://github.com/fluencelabs/musl
synced 2025-06-11 14:01:34 +00:00
8 lines
104 B
C
8 lines
104 B
C
#include <string.h>
|
|
#include <strings.h>
|
|
|
|
char *rindex(const char *s, int c)
|
|
{
|
|
return strrchr(s, c);
|
|
}
|