2001-02-02 17:54:47 +00:00
|
|
|
.TH str_rchr 3
|
|
|
|
.SH NAME
|
|
|
|
str_rchr \- find character in ASCIIZ string
|
|
|
|
.SH SYNTAX
|
|
|
|
.B #include <str.h>
|
|
|
|
|
2006-11-07 17:56:05 +00:00
|
|
|
size_t \fBstr_rchr\fP(const char* \fIhaystack\fR,char \fIneedle\fR);
|
2001-02-02 17:54:47 +00:00
|
|
|
.SH DESCRIPTION
|
|
|
|
str_rchr returns the index of the last occurrance of needle or the first
|
|
|
|
occurrance of \\0 in \fIstring\fR.
|
|
|
|
.SH "SEE ALSO"
|
|
|
|
strchr(3)
|