OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / user / ser / crc.h
1 /* $Id: crc.h,v 1.3 2003/04/10 12:37:50 janakj Exp $*/
2
3 #ifndef _CRC_H_
4 #define _CRC_H_
5
6 #include "str.h"
7
8 #define CRC16_LEN       4
9
10 extern unsigned long int crc_32_tab[];
11 extern unsigned short int ccitt_tab[];
12 extern unsigned short int crc_16_tab[];
13
14 unsigned short crcitt_string( char *s, int len );
15 void crcitt_string_array( char *dst, str src[], int size );
16
17 #endif /* _CRC_H_ */
18