mirror of
https://github.com/mmozeiko/pkg2zip.git
synced 2026-09-03 03:29:59 +03:00
12 lines
250 B
C
12 lines
250 B
C
#pragma once
|
|
|
|
#include "pkg2zip_utils.h"
|
|
|
|
typedef struct {
|
|
uint32_t PKG_ALIGN(16) crc[4 * 5];
|
|
} crc32_ctx;
|
|
|
|
void crc32_init(crc32_ctx* ctx);
|
|
void crc32_update(crc32_ctx* ctx, const void* buffer, size_t size);
|
|
uint32_t crc32_done(crc32_ctx* ctx);
|