mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-03 03:50:40 +00:00
normalize includes: common
This commit is contained in:
+3
-2
@@ -1,4 +1,6 @@
|
||||
#include "crc32.h"
|
||||
#include "crc16.h"
|
||||
|
||||
#include "common/crc32.h"
|
||||
|
||||
uint16 CRC16(const unsigned char *buf, int size, int key)
|
||||
{
|
||||
@@ -12,4 +14,3 @@ uint16 CRC16(const unsigned char *buf, int size, int key)
|
||||
crc = CRC32::Update(buf, size, crc);
|
||||
return CRC32::Finish(crc) & 0xffff;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user