summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/ods68302/include/crc.h
blob: ac0ffa5ba8381cf0387625199c1374bb78a154aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*****************************************************************************/
/*
   CRC 16 Calculate Interface

*/
/*****************************************************************************/

#ifndef _CRC_H_
#define _CRC_H_

 /* ----
      F U N C T I O N S
  */
#if __cplusplus
extern "C"
{
#endif

uint16_t         calc_crc(void *data, uint32_t         count);

#if __cplusplus
}
#endif
#endif