blob: 744c9558de5df5d7bb99abc32e717f47ae30aa8e [file] [log] [blame]
#ifndef LOGGING_CRC32C_SW_H__
#define LOGGING_CRC32C_SW_H__
#include <stdint.h>
uint32_t crc32c_sw(uint32_t crc, const void* data, int length);
#endif