#ifndef BOOL_HEADER
#define BOOL_HEADER

#include <stdlib.h>

typedef int bool;

#define true 1
#define false 0

#endif
