CRC32.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. //////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  FileName    :   CRC32.H
  4. //  Creater     :   Freeway Chen
  5. //  Date        :   2000-6-15 18:25:43
  6. //  Comment     :   Get source code from Zlib Project
  7. //
  8. //////////////////////////////////////////////////////////////////////////////////////
  9. #ifndef CRC32_H
  10. #define CRC32_H
  11. // most CRC first value is 0
  12. extern "C" unsigned CRC32(unsigned CRC, const void *pvBuf, unsigned uLen);
  13. extern "C" inline unsigned CRC32_16BYTES(unsigned CRC, const void *pvBuf);
  14. extern "C" inline unsigned CRC32_48BYTES(unsigned CRC, const void *pvBuf);
  15. #endif  // CRC32_H