summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/ods68302/include/crc.h
blob: 1c5be55e32e236c72a207c8ca7e7a36b3dabf83c (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
25
26
/*****************************************************************************/
/*
  $Id$

   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