/* ** binary.h - include file for binary i/o routines */ #define BYTE 8 /* number of bits in a byte */ #define ZERO 48 /* ascii code for zero */ #define ONE 49 /* ascii code for one */ int masks[] = { 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x100, 0x200, 0x400, 0x800, 0x1000, 0x2000, 0x4000, 0x8000, 0x10000, 0x20000, 0x40000, 0x80000 };