summaryrefslogtreecommitdiffstats
path: root/qemu/roms/ipxe/src/include/ipxe/crc32.h
blob: 38ac1b31f219a4c2948536de873745974c305a5a (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _IPXE_CRC32_H
#define _IPXE_CRC32_H

FILE_LICENCE ( GPL2_OR_LATER );

#include <stdint.h>

u32 crc32_le ( u32 seed, const void *data, size_t len );

#endif