rusefi-1/firmware/util/crc.h

16 lines
224 B
C
Raw Normal View History

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