]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/string/rindex.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / string / rindex.c
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 }