|
NAMEcase_starts - compare prefixes of strings case-insensitivelySYNTAX#include <libowfat/case.h>int case_starts(const char* a,const char* b); DESCRIPTIONcase_starts returns 1 if b is a prefix of a, 0 otherwise. For this comparison, 'A' == 'a', 'B' == 'b', ..., 'Z' == 'z'.SEE ALSOstr_start(3) Visit the GSP FreeBSD Man Page Interface. |