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