Simple crc32 implementation

This commit is contained in:
Alex
2022-11-06 02:18:31 +02:00
parent 9635cefa17
commit 5682229f4f
2 changed files with 87 additions and 0 deletions

8
include/crc32.h Normal file
View File

@ -0,0 +1,8 @@
#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__