This commit is contained in:
biosvos
2026-08-07 17:38:18 +09:00
commit 873193a243
9613 changed files with 2755992 additions and 0 deletions
@@ -0,0 +1,15 @@
#if defined(ENABLE_CRC32)
#if !defined(__MHASH_CRC32_H)
#define __MHASH_CRC32_H
#include "libdefs.h"
void mhash_clear_crc32(mutils_word32 * crc);
void mhash_get_crc32( __const mutils_word32 *crc, void *ret);
void mhash_crc32(mutils_word32 *crc, __const void *given_buf, mutils_word32 len);
void mhash_crc32b(mutils_word32 *crc, __const void *given_buf, mutils_word32 len);
#endif
#endif