0
0
Fork 0
mirror of https://github.com/ZDoom/Raze.git synced 2025-03-09 02:11:25 +00:00
raze/polymer/build/include/crc32.h

21 lines
372 B
C
Raw Normal View History

#ifndef __crc32_h__
#define __crc32_h__
#ifdef __cplusplus
extern "C" {
#endif
void initcrc32table(void);
unsigned int crc32once(unsigned char *blk, unsigned int len);
void crc32init(unsigned int *crcvar);
void crc32block(unsigned int *crcvar, unsigned char *blk, unsigned int len);
unsigned int crc32finish(unsigned int *crcvar);
#ifdef __cplusplus
}
#endif
#endif