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