d243200850
This is part one of moving the authoritive version from src/usr.sbin/pkg_install to pkgsrc/pkgtools/pkg_install/files. Discussed with and agreed by: jlam@, agc@, adrianp@ Raised issue to and not objected by: core@
20 lines
365 B
C
20 lines
365 B
C
/* $NetBSD: dewey.h,v 1.1.1.1 2007/07/16 13:01:47 joerg Exp $ */
|
|
|
|
#ifndef _INST_LIB_DEWEY_H_
|
|
#define _INST_LIB_DEWEY_H_
|
|
|
|
int dewey_cmp(const char *, int, const char *);
|
|
int dewey_match(const char *, const char *);
|
|
int dewey_mktest(int *, const char *);
|
|
|
|
enum {
|
|
DEWEY_LT,
|
|
DEWEY_LE,
|
|
DEWEY_EQ,
|
|
DEWEY_GE,
|
|
DEWEY_GT,
|
|
DEWEY_NE
|
|
};
|
|
|
|
#endif /* _INST_LIB_DEWEY_H_ */
|