|
From: Scott A. C. <sac...@pr...> - 2004-06-16 18:35:04
|
I've noticed that there are two different booleans used in the code:
src/sc2code/libs/compiler.h:
typedef enum
{
FALSE = 0,
TRUE
} BOOLEAN;
src/types.h:
typedef enum
{
false = 0,
true
} bool;
Is this by design, or is it something that should change? My intuition says
to use 'bool', since that's the way the C99 standard did it.
----Scott
|