diff options
| author | Nebula Moe <nebula_moe@outlook.com> | 2023-07-24 19:47:03 +0800 |
|---|---|---|
| committer | Nebula Moe <nebula_moe@outlook.com> | 2023-07-28 22:30:22 +0800 |
| commit | 2161797b19b068622a692628f352c78254d8a354 (patch) | |
| tree | 146272037ff9a79dbd3903dd9471a7713469419d /crc32.h | |
Diffstat (limited to 'crc32.h')
| -rw-r--r-- | crc32.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,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 |
