Blame view
tools/sctk-2.4.10/src/sclite/booldef.h
277 Bytes
8dcb6dfcb first commit |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/* booldef.h - defines a "boolean" type */ #ifndef BOOLDEF_HEADER #define BOOLDEF_HEADER #define boolean int #define T 1 #define F 0 /* (K&R p. 38 equates non-zero with true,but most C's use 0 and 1.) */ #endif extern char *bool_print(boolean x); /* end of booldef.h */ |