~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to regex/utils.h

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* utility definitions */
 
2
#ifdef _POSIX2_RE_DUP_MAX
 
3
#define DUPMAX          _POSIX2_RE_DUP_MAX      /* xxx is this right? */
 
4
#else
 
5
#define DUPMAX          255
 
6
#endif
 
7
#define RE_INFINITY     (DUPMAX + 1)
 
8
#define NC              (CHAR_MAX - CHAR_MIN + 1)
 
9
typedef unsigned char uch;
 
10
 
 
11
/* switch off assertions (if not already off) if no REDEBUG */
 
12
#ifndef REDEBUG
 
13
#ifndef NDEBUG
 
14
#define NDEBUG  /* no assertions please */
 
15
#endif
 
16
#endif
 
17
#include <assert.h>
 
18
 
 
19
/* for old systems with bcopy() but no memmove() */
 
20
#ifdef USEBCOPY
 
21
#define memmove(d, s, c)        bcopy(s, d, c)
 
22
#endif