mirror of
https://github.com/xcat2/xNBA.git
synced 2026-04-01 02:53:28 +00:00
Access to the gpxe.org and etherboot.org domains and associated resources has been revoked by the registrant of the domain. Work around this problem by renaming project from gPXE to iPXE, and updating URLs to match. Also update README, LOG and COPYRIGHTS to remove obsolete information. Signed-off-by: Michael Brown <mcb30@ipxe.org>
11 lines
164 B
C
11 lines
164 B
C
#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
|