Created
September 29, 2011 10:06
-
-
Save h-east/1250432 to your computer and use it in GitHub Desktop.
a part of general.h of exuberant ctags from http://ctags.sourceforge.net/ (GPL code)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#undef FALSE | |
#undef TRUE | |
#ifdef VAXC | |
typedef enum { FALSE, TRUE } booleanType; | |
typedef int boolean; | |
#else | |
# ifdef __cplusplus | |
typedef bool boolean; | |
#define FALSE false | |
#define TRUE true | |
# else | |
typedef enum { FALSE, TRUE } boolean; | |
# endif | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment