9 lines
173 B
C
9 lines
173 B
C
// Copyright (C) 2007-2025 EQ2EMulator
|
|
// Licensed under GPL v3
|
|
#ifndef _CRC16_H
|
|
#define _CRC16_H
|
|
|
|
unsigned long CRC16(const unsigned char *buf, int size, int key);
|
|
|
|
#endif
|