home *** CD-ROM | disk | FTP | other *** search
/ Software Recommendations - 1998 Season 1 / DNBCD4.iso / share / DOS / ipxcopy / SRC.ZIP / SRC / CRC32.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-06  |  147 b   |  13 lines

  1. /*
  2.  
  3.    CRC32.H
  4.  
  5. */
  6.  
  7. #ifndef _CRC32_H
  8. #define _CRC32_H
  9.  
  10. unsigned long crc32(unsigned long crc, unsigned char *buf, size_t len);
  11.  
  12. #endif
  13.