summaryrefslogtreecommitdiffhomepage
path: root/Kernel/NewKit/Crc32.hpp
blob: e13aaad53af0474e52b5021bd76d420e696bcd22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 *	========================================================
 *
 *	NewOS 	Date Added: 13/02/2023
 * 	Copyright SoftwareLabs, all rights reserved.
 *
 * 	========================================================
 */

#ifndef __CRC32_H__
#define __CRC32_H__

#include <NewKit/Defines.hpp>

#define kCrcCnt (256)

namespace NewOS
{
	UInt ke_calculate_crc32(const Char* crc, UInt len) noexcept;
} // namespace NewOS

#endif // !__CRC32_H__