str_chr - Man Page
find character in ASCIIZ string
Syntax
#include <str.h>
size_t str_chr(const char* haystack,char needle);
Description
str_chr returns the index of the first occurrance of needle or \0 in string.
find character in ASCIIZ string
#include <str.h>
size_t str_chr(const char* haystack,char needle);
str_chr returns the index of the first occurrance of needle or \0 in string.