crc32.h 217 B

1234567891011121314
  1. #ifndef _CRC_CRC32_H
  2. #define _CRC_CRC32_H
  3. #include <stdint.h>
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif /* __cplusplus */
  7. uint32_t crc32(const char* s, int len);
  8. #ifdef __cplusplus
  9. }
  10. #endif /* __cplusplus */
  11. #endif