home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / msdos / c / crc_rzsz / read.me < prev   
Encoding:
Text File  |  1990-02-25  |  898 b   |  32 lines

  1.  
  2.     This is a modest pc-specific (Turbo-C src) hack of the 'crc' 
  3.     utility distributed with the Forsberg RZSZ archive.  
  4.  
  5.     'crc' produces output like so:
  6.  
  7.         4EAE9CF6    9286 crc.c
  8.         2FE3A26D   11246 crc.com
  9.         3D720701     457 read.me
  10.  
  11.     where a 32-bit CRC value is followed by filesize and name.
  12.  
  13.     The version of 'crc' included here differs from the RZSZ dis-
  14.     tribution in the following ways:
  15.  
  16.     1.  large block reads are substituted for getchar to speed
  17.         things up.
  18.  
  19.     2.  There is an alternative crc calculation function written
  20.         in 386 ASM.  When a 386 cpu is detected, this function
  21.         is substituted for the regular c function.  This decreases
  22.         runtime by about 60 percent.
  23.  
  24.     Should you recompile...
  25.  
  26.         * link with Borland wildargs.obj for filename expansion
  27.         * define ASM386 if you want the 386 assembly lang. stuff
  28.  
  29.     Ray Berry
  30.     Bellevue WA
  31.     2/25/90
  32.