blob: 7055a1c1125e61988ea9bc634a6246c2619d5379 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright (C) 2023 Dzshy <dzshy@outlook.com>. All Rights Reserved.
// Licensed under Non-Profit Open Software License ("Non-Profit OSL") 3.0.
#ifndef CRC32_H_
#define CRC32_H_
#include <stdint.h>
uint32_t crc32(uint32_t r, void *buf, int size);
#endif
|