1993-11-11 02:34:55 +03:00
|
|
|
/* utility definitions */
|
|
|
|
#define DUPMAX _POSIX2_RE_DUP_MAX /* xxx is this right? */
|
|
|
|
#define INFINITY (DUPMAX + 1)
|
|
|
|
#define NC (CHAR_MAX - CHAR_MIN + 1)
|
|
|
|
|
1993-11-11 05:02:57 +03:00
|
|
|
typedef unsigned char uch;
|
1993-11-11 02:34:55 +03:00
|
|
|
|
|
|
|
#ifndef REDEBUG
|
|
|
|
#ifndef NDEBUG
|
|
|
|
#define NDEBUG /* no assertions please */
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#include <assert.h>
|