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