/
niceSOFT
/
util-linux
Обзор
Документация
Войти
/
niceSOFT
/
util-linux
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
include/crc32.h
16 строк
469 B
Thomas Weißschuh
libc/crc32: make fill value of excluded area configurable
27 фев 2025, 20:16
27 фев 2025, 20:16
977dd74
Код
Авторство
О чём код?
/* * No copyright is claimed. This code is in the public domain; do with * it what you wish. */ #ifndef UL_CRC32_H #define UL_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, uint8_t exclude_fill); #endif