home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / news / cnews.tar / batch / coder.h < prev    next >
C/C++ Source or Header  |  1991-11-04  |  267b  |  9 lines

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