SRB2/tools/gdbst03/src/include/crc.h
2014-03-15 13:11:35 -04:00

20 lines
321 B
C

/*
* CRC.H - header file for CRC functions
*/
#ifndef _CRC_H_
#define _CRC_H_
#include <stdlib.h> /* For size_t */
typedef unsigned char BYTE;
typedef unsigned short WORD;
typedef unsigned long DWORD;
/*
** File: CRC-16.C
*/
WORD crc16(char *data_p, WORD length);
#endif /* _CRC_H_ */