blob: e4732dfb6f218970d88de12397a422de3c9d0179 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* ISC license. */
#include <string.h>
#include <s6-rc/s6rc-utils.h>
int s6rc_strrefcmp (void const *a, void const *b)
{
return strcmp(*(char const *const *)a, *(char const *const *)b) ;
}
|