mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
d9867cfaaf
git-svn-id: https://svn.eduke32.com/eduke32@1105 1a8010ca-5511-0410-912e-c29ae57300e0
20 lines
372 B
C
20 lines
372 B
C
#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
|