crc64.h 215 B

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