/
niceSOFT
/
util-linux
Обзор
Документация
Войти
/
niceSOFT
/
util-linux
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
include/crc64.h
15 строк
403 B
Karel Zak
include/crc64: add missing license header
28 июн 2023, 13:41
28 июн 2023, 13:41
2b48beb
Код
Авторство
О чём код?
/* SPDX-License-Identifier: MIT * * This file is licensed under the MIT License. */ #ifndef UL_CRC64_H #define UL_CRC64_H #include <sys/types.h> #include <stdint.h> extern uint64_t ul_crc64_ecma(const unsigned char *input_str, size_t num_bytes); extern uint64_t ul_crc64_we(const unsigned char *input_str, size_t num_bytes); extern uint64_t ul_update_crc64(uint64_t crc, unsigned char c); #endif