case_starts

Langue: en

Version: 158365 (fedora - 05/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

case_starts - compare prefixes of strings case-insensitively

SYNTAX

#include <case.h>

int case_starts(const char* a,const char* b);

DESCRIPTION

case_starts returns 1 if b is a prefix of a, 0 otherwise. For this comparison, 'A' == 'a', 'B' == 'b', ..., 'Z' == 'z'.

SEE ALSO

str_start(3)