home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff319.lzh / CNewsSrc / cnews.src.lzh / input / coder.h < prev    next >
C/C++ Source or Header  |  1989-07-05  |  319b  |  14 lines

  1. #ifndef _CODER_H_
  2. #define _CODER_H_
  3.  
  4. char header[] = "Decode the following with bdecode\n";
  5. char codeset[] =
  6.     "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-";
  7.  
  8. #define ENCODE(c)    codeset[c]
  9.  
  10. extern short crctab[];
  11. #define CRC(crc, c)     crc = (crc >> 8) ^ crctab[(crc^c) & 0xff]
  12.  
  13. #endif /* _CODER_H_ */
  14.