home *** CD-ROM | disk | FTP | other *** search
- /**********************************************************************
- * crc.h - 32 Bit CRC Header File For TriTel BBS 1.0
- * Copyright (c) 1991 By Mark D. Goodwin
- **********************************************************************/
- #ifndef __CRCH__
- #define __CRCH__
-
- // function prototype
- #ifdef __cplusplus
- extern "C" {
- #endif
- unsigned long crc32(char *s);
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-
-