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
371 B
Groff
13 lines
371 B
Groff
.TH case_starts 3
|
|
.SH NAME
|
|
case_starts \- compare prefixes of strings case-insensitively
|
|
.SH SYNTAX
|
|
.B #include <libowfat/case.h>
|
|
|
|
int \fBcase_starts\fP(const char* \fIa\fR,const char* \fIb\fR);
|
|
.SH DESCRIPTION
|
|
case_starts returns 1 if \fIb\fR is a prefix of \fIa\fR, 0 otherwise.
|
|
For this comparison, 'A' == 'a', 'B' == 'b', ..., 'Z' == 'z'.
|
|
.SH "SEE ALSO"
|
|
str_start(3)
|