Add files via upload

This commit is contained in:
Yutaka Sawada
2023-03-12 11:07:38 +09:00
committed by GitHub
parent ac6ea9a1b0
commit 4dcc2fe775
17 changed files with 4055 additions and 0 deletions

7
source/sfv_md5/crc.h Normal file
View File

@@ -0,0 +1,7 @@

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