Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
0f9b1f672b68b7c3570f07b130cc5c8938b22bad
/
.
/
src
/
string
/
rindex.c
blob: 17df2bf2ecb89a109a3e7310d518dad76651b2fb [
file
] [
log
] [
blame
]
#include
<string.h>
#include
<strings.h>
char
*
rindex
(
const
char
*
s
,
int
c
)
{
return
strrchr
(
s
,
c
);
}