#ifndef INC_LIB_BOOL_H
#define INC_LIB_BOOL_H

#include <stdint.h>

#define bool_t uint8_t
#define FALSE 0
#define TRUE 1

#endif