gtkradiant/libs/bytebool.h
TTimo 9998050654 set eol-style
git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/branches/ZeroRadiant@183 8a3a26a2-13c4-0310-b231-cf6edde360e5
2007-11-04 03:34:51 +00:00

20 lines
375 B
C

#ifndef __BYTEBOOL__
#define __BYTEBOOL__
// bool is a C++ type
// if we are compiling for C, use an enum
// this header is not really meant for direct inclusion,
// it is used by mathlib and cmdlib
#ifdef __cplusplus
typedef bool qboolean;
#define qtrue true
#define qfalse false
#else
typedef enum { qfalse, qtrue } qboolean;
#endif
typedef unsigned char byte;
#endif