You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
460 B
22 lines
460 B
/* $Id: sequence.h 4871 2001-07-09 08:09:58Z alexk $
|
|
**
|
|
** Sequence space arithmetic routines.
|
|
**
|
|
** This is a set of routines for implementing so called sequence
|
|
** space arithmetic (typically used for DNS serial numbers). The
|
|
** implementation here is taken from RFC 1982.
|
|
*/
|
|
|
|
#ifndef INN_SEQUENCE_H
|
|
#define INN_SEQUENCE_H 1
|
|
|
|
#include <inn/defines.h>
|
|
|
|
BEGIN_DECLS
|
|
|
|
int seq_lcompare(unsigned long, unsigned long);
|
|
|
|
END_DECLS
|
|
|
|
#endif /* INN_SEQUENCE_H */
|