#ifndef _BOOL_H #define _BOOL_H typedef int bool; const int FALSE = 0; const int TRUE = 1; #endif