C 言語で true と false を使うSeptember 11, 2013#define FALSE 0 #define TRUE !(FALSE) typedef enum { FALSE, TRUE } boolean;