您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

crc32.h 164B

12345678910
  1. #ifndef _GPXE_CRC32_H
  2. #define _GPXE_CRC32_H
  3. FILE_LICENCE ( GPL2_OR_LATER );
  4. #include <stdint.h>
  5. u32 crc32_le ( u32 seed, const void *data, size_t len );
  6. #endif