raze-gles/source/build/include/crc32.h
hendricks266 1cc9d13ccf The great repository rearrangement of 2017.
Files moved but not modified. Changes to follow in a subsequent commit.

You down with CPP?

git-svn-id: https://svn.eduke32.com/eduke32@6055 1a8010ca-5511-0410-912e-c29ae57300e0
2017-02-01 10:01:11 +00:00

25 lines
366 B
C

#ifndef crc32_h_
#define crc32_h_
#include "compat.h"
#ifdef __cplusplus
extern "C" {
#endif
#define POLY 0xEDB88320
#ifdef BITNESS64
extern uint32_t crc32table[8][256];
#else
extern uint32_t crc32table[4][256];
#endif
extern uint32_t Bcrc32(const void* data, size_t length, uint32_t crc);
extern void initcrc32table(void);
#ifdef __cplusplus
}
#endif
#endif