2
0
mirror of https://github.com/xcat2/xNBA.git synced 2026-05-15 10:54:10 +00:00
Files
xNBA/src/include/gpxe/crc32.h
T
Joshua Oreman 7eaad90976 [digest] Add generic CRC32 function
Signed-off-by: Marty Connor <mdc@etherboot.org>
2010-01-05 08:54:28 -05:00

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