1 /* $Id$
2    Written 1999 by Tobias Ernst and released do the Public Domain.
3    This file is part of NLTOOLS, the nodelist processor of the Husky fidonet
4    software project.
5 
6 */
7 #ifndef __CRC16_H
8 #define __CRC16_H
9 
10 void crc16_init(unsigned short *crcptr);
11 void crc16_process(unsigned short *crcptr, const unsigned char *buffer, size_t length);
12 void crc16_finalize(unsigned short *crcptr);
13 
14 
15 #endif
16