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