mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 12:41:30 +00:00
8 lines
121 B
C
8 lines
121 B
C
#ifndef _CRC16_H
|
|
#define _CRC16_H
|
|
#include "types.h"
|
|
|
|
uint16 CRC16(const unsigned char *buf, int size, int key);
|
|
|
|
#endif
|