1case_starts(3) Library Functions Manual case_starts(3)
23
4
NAME
6case_starts - compare prefixes of strings case-insensitively
7
SYNTAX
9#include <case.h>
1011
int case_starts(const char* a,const char* b);
12
DESCRIPTION
14case_starts returns 1 if b is a prefix of a, 0 otherwise. For this
15comparison, 'A' == 'a', 'B' == 'b', ..., 'Z' == 'z'.
16
SEE ALSO
18str_start(3)
1920
21
22
case_starts(3)