1 2 3 4 5 6 7 8 9 10 11 12
/* ISC license. */ #include <strings.h> #include <skalibs/bytestr.h> #include "bytestr-internal.h" int stringkey_bcasecmp (void const *a, void const *b) { struct stringkey_s const *bb = b ; return strcasecmp((char const *)a, bb->s) ; }