12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #ifndef CRC32_H__
- #define CRC32_H__
- #include <stdint.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- uint32_t crc32_compute(uint8_t const * p_data, uint32_t size, uint32_t const * p_crc);
- #ifdef __cplusplus
- }
- #endif
- #endif
|