blob: ecec95197c3717c09b89277ce81aff73d234ebaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* ========================================================
*
* NeKernel
* Date Added: 13/02/2023
* Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.
*
* ========================================================
*/
#ifndef NEKIT_CRC32_H
#define NEKIT_CRC32_H
#include <NeKit/Config.h>
namespace Kernel {
UInt32 ke_calculate_crc32(const VoidPtr crc, Int32 len);
} // namespace Kernel
#endif // !NEKIT_CRC32_H
|