blob: d8f964bd1265fa38c216fb0e5bc5ea0ff8e0caee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// SPDX-License-Identifier: Apache-2.0
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
#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
|