mirror of
https://github.com/xcat2/xNBA.git
synced 2026-05-15 10:54:10 +00:00
7eaad90976
Signed-off-by: Marty Connor <mdc@etherboot.org>
11 lines
164 B
C
11 lines
164 B
C
#ifndef _GPXE_CRC32_H
|
|
#define _GPXE_CRC32_H
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER );
|
|
|
|
#include <stdint.h>
|
|
|
|
u32 crc32_le ( u32 seed, const void *data, size_t len );
|
|
|
|
#endif
|