chiark / gitweb /
wip new states
[innduct.git] / include / inn / sequence.h
1 /*  $Id: sequence.h 4871 2001-07-09 08:09:58Z alexk $
2 **
3 **  Sequence space arithmetic routines.
4 **
5 **  This is a set of routines for implementing so called sequence
6 **  space arithmetic (typically used for DNS serial numbers). The
7 **  implementation here is taken from RFC 1982.
8 */
9
10 #ifndef INN_SEQUENCE_H
11 #define INN_SEQUENCE_H 1
12
13 #include <inn/defines.h>
14
15 BEGIN_DECLS
16
17 int seq_lcompare(unsigned long, unsigned long);
18
19 END_DECLS
20
21 #endif /* INN_SEQUENCE_H */