You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
301 B
Groff
13 lines
301 B
Groff
24 years ago
|
.TH str_chr 3
|
||
|
.SH NAME
|
||
|
str_chr \- find character in ASCIIZ string
|
||
|
.SH SYNTAX
|
||
|
.B #include <str.h>
|
||
|
|
||
|
extern int \fBstr_chr\fP(const char* \fIhaystack\fR,char \fIneedle\fR);
|
||
|
.SH DESCRIPTION
|
||
|
str_chr returns the index of the first occurrance of \fIneedle\fR or \\0 in
|
||
|
\fIstring\fR.
|
||
|
.SH "SEE ALSO"
|
||
|
strchr(3)
|