rusefi/firmware/util/crc.h

16 lines
239 B
C

/**
* @file crc.h
*
* @date Sep 20, 2013
* @author Andrey Belomutskiy, (c) 2012-2014
*/
#ifndef CRC_H_
#define CRC_H_
typedef unsigned char crc;
crc calc_crc(const crc message[], int nBytes);
#endif /* CRC_H_ */