blob: fead2bf30dcd0a2c5d105701b9cd55cb73b0f374 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* ISC license. */
#include <strings.h>
#include <skalibs/bytestr.h>
int str_casecmp (void const *a, void const *b)
{
return strcasecmp(*(char const *const *)a, *(char const *const *)b) ;
}
|