You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
343 B
12 lines
343 B
#ifndef UL_NG_CRC32_H |
|
#define UL_NG_CRC32_H |
|
|
|
#include <sys/types.h> |
|
#include <stdint.h> |
|
|
|
extern uint32_t ul_crc32(uint32_t seed, const unsigned char *buf, size_t len); |
|
extern uint32_t ul_crc32_exclude_offset(uint32_t seed, const unsigned char *buf, size_t len, |
|
size_t exclude_off, size_t exclude_len); |
|
|
|
#endif |
|
|
|
|