diff options
Diffstat (limited to 'crc32.h')
-rw-r--r-- | crc32.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/crc32.h b/crc32.h new file mode 100644 index 0000000..2158681 --- /dev/null +++ b/crc32.h @@ -0,0 +1,12 @@ +#pragma once + +#ifndef CRC32_H +#define CRC32_H + +#include <stddef.h> +#include <stdint.h> + +int +CalculateCrc32(uint8_t *Data, size_t DataSize, uint32_t *CrcOut); + +#endif |