mirror of
https://github.com/tenderlove/initial-v.git
synced 2024-11-23 06:34:39 +00:00
12 lines
151 B
C
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
|