~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/xpinstall/wizard/libxpnet/GUSI/include/compat.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
Import upstream version 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-
 
2
 * Copyright (c) 1991, 1993
 
3
 *      The Regents of the University of California.  All rights reserved.
 
4
 *
 
5
 * Redistribution and use in source and binary forms, with or without
 
6
 * modification, are permitted provided that the following conditions
 
7
 * are met:
 
8
 * 1. Redistributions of source code must retain the above copyright
 
9
 *    notice, this list of conditions and the following disclaimer.
 
10
 * 2. Redistributions in binary form must reproduce the above copyright
 
11
 *    notice, this list of conditions and the following disclaimer in the
 
12
 *    documentation and/or other materials provided with the distribution.
 
13
 * [�3 Deleted as of 22Jul99, see
 
14
 *     ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
 
15
 *         for details]
 
16
 * 4. Neither the name of the University nor the names of its contributors
 
17
 *    may be used to endorse or promote products derived from this software
 
18
 *    without specific prior written permission.
 
19
 *
 
20
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 
21
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
22
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
23
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 
24
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
25
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 
26
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
27
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
28
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
29
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
30
 * SUCH DAMAGE.
 
31
 *
 
32
 *      @(#)compat.h    8.1 (Berkeley) 6/2/93
 
33
 */
 
34
 
 
35
/* Adapted for GUSI by Matthias Neeracher <neeri@iis.ee.ethz.ch> */
 
36
 
 
37
#ifndef _COMPAT_H_
 
38
#define _COMPAT_H_
 
39
 
 
40
/*
 
41
 * If your system doesn't specify a max size for a SIZE_T, check
 
42
 * to make sure this is the right one.
 
43
 */
 
44
#ifndef SIZE_T_MAX
 
45
#define SIZE_T_MAX      UINT_MAX
 
46
#endif
 
47
 
 
48
#define index(a, b)                     strchr(a, b)
 
49
#define rindex(a, b)            strrchr(a, b)
 
50
#define bzero(a, b)                     memset(a, 0, b)
 
51
#define bcmp(a, b, n)           memcmp(a, b, n)
 
52
#define bcopy(a, b, n)          memmove(b, a, n)
 
53
 
 
54
/* POSIX 1003.2 RE limit. */
 
55
#ifndef _POSIX2_RE_DUP_MAX
 
56
#define _POSIX2_RE_DUP_MAX      255
 
57
#endif
 
58
 
 
59
#ifndef MAX
 
60
#define MAX(_a,_b)      ((_a)<(_b)?(_b):(_a))
 
61
#endif
 
62
#ifndef MIN
 
63
#define MIN(_a,_b)      ((_a)<(_b)?(_a):(_b))
 
64
#endif
 
65
 
 
66
#endif /* !_COMPAT_H_ */