TBCI Numerical high perf. C++ Library  2.8.0
bool.h
Go to the documentation of this file.
1 
4 /* $Id: bool.h,v 1.3.2.1 2003/07/13 22:25:05 garloff Exp $ */
5 
6 #ifndef TBCI_BOOL_H
7 #define TBCI_BOOL_H
8 
9 /*
10 enum bool
11  {
12  false = 0, true = 1
13  }
14 */
15 
16 /*
17  typedef char bool
18  #define false 0
19  #define true 1
20  */
21 
22 #define bool int
23 #define false 0
24 #define true 1
25 
26 #endif /* TBCI_BOOL_H */