crc_8.h

版权声明:本文仅为本人转载学习保存使用,并未用作其他任何之处。 https://blog.csdn.net/qq_14997637/article/details/83902594
#ifndef CRC_8_H_
#define CRC_8_H_
#include "Stdafw.h"
u8 get_crc8(const u8* pp_Data, u32 vp_len);
u8 calc_crc8(u8 vp_crc, const u8* pp_Data, u32 vp_len);
u8 file_crc8(FILE* pp_fp, u32 vp_crc_offset);

#endif

猜你喜欢

转载自blog.csdn.net/qq_14997637/article/details/83902594
CRC
8 H