/
githubmirror
/
nvme-cli
Обзор
Документация
Войти
/
githubmirror
/
nvme-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
shared/crc32.h
10 строк
220 B
Martin Belanger
shared: rename everything to the shr_ namespace
28 июл 2026, 10:55
28 июл 2026, 10:55
8876cbc
Код
Авторство
О чём код?
/* SPDX-License-Identifier: LicenseRef-Gary-S-Brown-CRC32 */ /* * This file is part of nvme-cli. */ #pragma once #include <stddef.h> #include <stdint.h> uint32_t shr_crc32(uint32_t crc, const void *buf, size_t len);