2024-11-20 05:18:19 +02:00

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__