home *** CD-ROM | disk | FTP | other *** search
/ synchro.net / synchro.net.tar / synchro.net / modem.madness / SMMTRBBS / CCRC32.ZIP / CRC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-19  |  425 b   |  19 lines

  1. /**********************************************************************
  2. * crc.h - 32 Bit CRC Header File For TriTel BBS 1.0
  3. *         Copyright (c) 1991 By Mark D. Goodwin
  4. **********************************************************************/
  5. #ifndef __CRCH__
  6. #define __CRCH__
  7.  
  8. // function prototype
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. unsigned long crc32(char *s);
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16.  
  17. #endif
  18.  
  19.