/* Project: commondef.h description: common definitions date: 22/03/1998 author: Andreas Weissl commments: copyright (C) 1998 Andreas Weissl. All rights reserved. */ #ifndef __common_INC #define __common_INC #define TRUE (0 == 0) #define FALSE (0 == 1) #define true (0 == 0) #define false (0 == 1) #define setBitOn(b, v) (v = v | (1 << b)) #define setBitOff(b, v) (v = v & (!(1 << b))) #endif