/* cosmetic C definitions */ #define EQ == #define IS == #define NEQ != #define ISNT != #define AND && #define OR || #define NOT ! #define NULL 0 #define TRUE 1 #define FALSE 0 #define TRUE_STRING(i) (i IS TRUE ? "TRUE" : "FALSE") #define u unsigned typedef char boolean; typedef char *string; #define plural(i) ( ((i) EQ 1) ? "":"s")