1254225Speter/*	$NetBSD: utils.h,v 1.1.1.2 2008/05/18 14:31:39 aymeric Exp $ */
2254225Speter
3254225Speter/*-
4254225Speter * Copyright (c) 1992, 1993, 1994 Henry Spencer.
5254225Speter * Copyright (c) 1992, 1993, 1994
6254225Speter *	The Regents of the University of California.  All rights reserved.
7254225Speter *
8254225Speter * This code is derived from software contributed to Berkeley by
9254225Speter * Henry Spencer of the University of Toronto.
10254225Speter *
11254225Speter * Redistribution and use in source and binary forms, with or without
12254225Speter * modification, are permitted provided that the following conditions
13254225Speter * are met:
14254225Speter * 1. Redistributions of source code must retain the above copyright
15254225Speter *    notice, this list of conditions and the following disclaimer.
16254225Speter * 2. Redistributions in binary form must reproduce the above copyright
17254225Speter *    notice, this list of conditions and the following disclaimer in the
18254225Speter *    documentation and/or other materials provided with the distribution.
19254225Speter * 3. All advertising materials mentioning features or use of this software
20254225Speter *    must display the following acknowledgement:
21254225Speter *	This product includes software developed by the University of
22254225Speter *	California, Berkeley and its contributors.
23254225Speter * 4. Neither the name of the University nor the names of its contributors
24254225Speter *    may be used to endorse or promote products derived from this software
25254225Speter *    without specific prior written permission.
26254225Speter *
27254225Speter * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28254225Speter * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29254225Speter * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30254225Speter * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31254225Speter * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32254225Speter * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33254225Speter * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34254225Speter * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35254225Speter * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36254225Speter * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37254225Speter * SUCH DAMAGE.
38254225Speter *
39254225Speter *	@(#)utils.h	8.2 (Berkeley) 3/16/94
40254225Speter */
41254225Speter
42254225Speter/* utility definitions */
43254225Speter#define	DUPMAX		_POSIX2_RE_DUP_MAX	/* xxx is this right? */
44254225Speter#define	INFINITY	(DUPMAX + 1)
45254225Speter#define	NC		(CHAR_MAX - CHAR_MIN + 1)
46254225Spetertypedef unsigned char uch;
47254225Speter
48254225Speter/* switch off assertions (if not already off) if no REDEBUG */
49254225Speter#ifndef REDEBUG
50254225Speter#ifndef NDEBUG
51254225Speter#define	NDEBUG	/* no assertions please */
52254225Speter#endif
53254225Speter#endif
54254225Speter#include <assert.h>
55254225Speter
56254225Speter/* for old systems with bcopy() but no memmove() */
57254225Speter#ifdef USEBCOPY
58254225Speter#define	memmove(d, s, c)	bcopy(s, d, c)
59254225Speter#endif
60