mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-28 15:34:33 +00:00
9 lines
186 B
C
9 lines
186 B
C
#ifndef __FENNIX_KERNEL_CRC32_H__
|
|
#define __FENNIX_KERNEL_CRC32_H__
|
|
|
|
#include <types.h>
|
|
|
|
EXTERNC uint32_t crc32(const uint8_t *Buffer, int Length);
|
|
|
|
#endif // !__FENNIX_KERNEL_CRC32_H__
|