// Copyright (c) Jon Thysell // Licensed under the MIT License. #ifndef STDBOOL_H #define STDBOOL_H #ifndef true typedef char bool; #define true 1 #define false 0 #endif #endif