mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-07 21:40:27 +00:00
b46bd5fa19
git-svn-id: https://svn.eduke32.com/eduke32@1567 1a8010ca-5511-0410-912e-c29ae57300e0
26 lines
481 B
C
26 lines
481 B
C
#include "crc32.h"
|
|
|
|
uint32_t crc32table[256];
|
|
|
|
void initcrc32table(void)
|
|
{
|
|
uint32_t i,j,k;
|
|
|
|
// algorithm and polynomial same as that used by infozip's zip
|
|
for (i=0; i<256; i++)
|
|
{
|
|
j = i;
|
|
for (k=8; k; k--)
|
|
j = (j&1) ? (0xedb88320L ^(j>>1)) : (j>>1);
|
|
crc32table[i] = j;
|
|
}
|
|
}
|
|
|
|
uint32_t crc32once(uint8_t *blk, uint32_t len)
|
|
{
|
|
uint32_t crc;
|
|
|
|
crc32init(&crc);
|
|
crc32block(&crc, blk, len);
|
|
return crc32finish(&crc);
|
|
}
|