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