home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / mbug / mbug103.arc / REL.C < prev    next >
Text File  |  1979-12-31  |  640b  |  17 lines

  1. /*
  2. ** rel.c -- common data for REL file processing
  3. */
  4.             /* common variables */
  5. int
  6.  inrel,            /* file descriptor for input REL file */
  7.  inrem = 0,        /* remaining bits in input chunk */
  8.  inchunk,        /* current chunk from REL file */
  9.  outrel,        /* file descriptor for output REL file */
  10.  outrem = 8,        /* remaining bits in output chunk */
  11.  outchunk,        /* current chunk for REL file */
  12.  item,            /* current item code */
  13.  type,            /* type field */
  14.  field;            /* current bit field */
  15. char
  16.  symbol[9];        /* current string */
  17.