/* A simple header file for boolean data. */ #ifndef _BOOLEAN_H_ typedef int bool; /* Type bool is the same as int. */ #define TRUE (1) #define FALSE (0) #define _BOOLEAN_H_ #endif