repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Uninitialized vector entry?
[minix3.git]
/
lib
/
other
/
rindex.c
blob
0c2896c2048fb1afc676fa39d454b442a109313f
1
#include <lib.h>
2
/* rindex - find last occurrence of a character in a string */
3
4
#include <string.h>
5
6
char
*
rindex
(
s
,
charwanted
)
/* found char, or NULL if none */
7
_CONST
char
*
s
;
8
char
charwanted
;
9
{
10
return
(
strrchr
(
s
,
charwanted
));
11
}