// A set of basic type and function declarations common to many programs // file: common.h #ifndef COMMON_H #define COMMON_H typedef int Boolean; const Boolean TRUE = 1; const Boolean FALSE = 0; #endif