File indexing completed on 2025-01-17 09:55:22
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
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