CHG: moved into header files.

This commit is contained in:
iceman1001 2017-01-25 00:35:11 +01:00
commit e36b07efc4
7 changed files with 15 additions and 15 deletions

View file

@ -9,7 +9,7 @@
#define __CRC16_H
#include <stdint.h>
#include "util.h"
#include "util.h" // SwapBits
unsigned short update_crc16(unsigned short crc, unsigned char c);
uint16_t crc16(uint8_t const *message, int length, uint16_t remainder, uint16_t polynomial);