/** * @file stdbool.h * @author Freya Murphy * @author Warren R. Carithers * * Boolean definitions. */ #ifndef _STDBOOL_H #define _STDBOOL_H // Boolean values typedef _Bool bool; #define true 1 #define false 0 #endif /* stdbool.h */