blob: 6ed3f00e5e1badc73b63ad8c3f0ba8d90912974d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
/* SPDX-License-Identifier: MIT */
#ifndef CRC32_H
#define CRC32_H
#include <stddef.h>
#include <stdint.h>
int
CalculateCrc32(uint8_t *Data, size_t DataSize, uint32_t *CrcOut);
#endif
|