1str_rchr(3) Library Functions Manual str_rchr(3)
23
4
NAME
6str_rchr - find character in ASCIIZ string
7
SYNTAX
9#include <str.h>
1011
size_t str_rchr(const char* haystack,char needle);
12
DESCRIPTION
14str_rchr returns the index of the last occurrance of needle or the
15first occurrance of \0 in string.
16
SEE ALSO
18strchr(3)
1920
21
22
str_rchr(3)