repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix mips setjmp/longjmp fpu state on r6, related issues
[musl.git]
/
src
/
string
/
rindex.c
blob
693c750b6b653c4a25f0c31ac12c43dabe08c152
1
#define _BSD_SOURCE
2
#include <string.h>
3
#include <strings.h>
4
5
char
*
rindex
(
const char
*
s
,
int
c
)
6
{
7
return
strrchr
(
s
,
c
);
8
}