source: rtems/c/src/lib/libbsp/m68k/ods68302/include/crc.h @ a4318d0c

4.104.114.84.95
Last change on this file since a4318d0c was a4318d0c, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/31/04 at 04:39:50

2004-03-31 Ralf Corsepius <ralf_corsepius@…>

  • clock/ckinit.c, include/bare.h, include/bsp.h, include/crc.h, startup/bspstart.c, startup/cpuboot.c, startup/crc.c, startup/gdb-hooks.c, startup/m68302scc.c, timer/timer.c: Convert to using c99 fixed size types.
  • Property mode set to 100644
File size: 411 bytes
Line 
1/*****************************************************************************/
2/*
3  $Id$
4
5   CRC 16 Calculate Interface
6
7*/
8/*****************************************************************************/
9
10#ifndef _CRC_H_
11#define _CRC_H_
12
13 /* ----
14      F U N C T I O N S
15  */
16#if __cplusplus
17extern "C"
18{
19#endif
20
21uint16_t         calc_crc(void *data, uint32_t         count);
22
23#if __cplusplus
24}
25#endif
26#endif
Note: See TracBrowser for help on using the repository browser.