// Copyright (C) 2023 Dzshy . All Rights Reserved. // Licensed under Non-Profit Open Software License ("Non-Profit OSL") 3.0. #ifndef CRC32_H_ #define CRC32_H_ #include uint32_t crc32(uint32_t r, void *buf, int size); #endif