7
mirror of https://github.com/tenderlove/initial-v.git synced 2024-11-23 06:34:39 +00:00
initial-v/firmware/components/crc/include/bmw_crc.h
2022-08-20 12:22:59 -07:00

12 lines
151 B
C

#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
uint8_t crc8(uint8_t crc, uint8_t const *buf, uint32_t len);
#ifdef __cplusplus
}
#endif