Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-05-18 08:29:50

0001 /* 
0002  * fcgimisc.h --
0003  *
0004  *      Miscellaneous definitions
0005  *
0006  *
0007  * Copyright (c) 1996 Open Market, Inc.
0008  *
0009  * See the file "LICENSE.TERMS" for information on usage and redistribution
0010  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
0011  *
0012  * $Id: fcgimisc.h,v 1.3 2001/06/18 14:25:47 robs Exp $
0013  */
0014 
0015 #ifndef _FCGIMISC_H
0016 #define _FCGIMISC_H
0017 
0018 #ifndef FALSE
0019 #define FALSE (0)
0020 #endif
0021 
0022 #ifndef TRUE
0023 #define TRUE  (1)
0024 #endif
0025 
0026 #ifndef min
0027 #define min(a,b) ((a) < (b) ? (a) : (b))
0028 #endif
0029 
0030 #ifndef max
0031 #define max(a,b) ((a) > (b) ? (a) : (b))
0032 #endif
0033 
0034 #ifndef ASSERT
0035 #define ASSERT(assertion) assert(assertion)
0036 #endif
0037 
0038 #endif  /* _FCGIMISC_H */