summaryrefslogtreecommitdiff
path: root/gpxe/src/include/gpxe/crc32.h
blob: d1c7437d4689ab33084cc1040bb08f5a9398673e (plain)
1
2
3
4
5
6
7
8
9
10
#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