Home
last modified time | relevance | path

Searched refs:colcomp (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/bsd/ntp/dist/sntp/libpkgver/
H A Dpkgver.h15 extern int colcomp(char *s1, char *s2);
17 #define PKG_VER_LT(x) (colcomp((x), PACKAGE_VERSION) < 0)
18 #define PKG_VER_LE(x) (colcomp((x), PACKAGE_VERSION) <= 0)
19 #define PKG_VER_EQ(x) (colcomp((x), PACKAGE_VERSION) == 0)
20 #define PKG_VER_GE(x) (colcomp((x), PACKAGE_VERSION) >= 0)
21 #define PKG_VER_GT(x) (colcomp((x), PACKAGE_VERSION) > 0)
H A Dcolcomp.c39 colcomp (s1, s2) in colcomp() function
99 return colcomp(*(char**)fi1, *(char**)fi2); in qcmp()