Files
MultiPar/source/sfv_md5/crc.h
2023-03-12 11:07:38 +09:00

8 lines
188 B
C

// CRC 計算用のテーブルを作る
void init_crc_table(void);
// CRC-32 を更新する
unsigned int crc_update(unsigned int crc, unsigned char *buf, unsigned int len);