/
githubmirror
/
nvme-cli
Обзор
Документация
Войти
/
githubmirror
/
nvme-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
shared/uuid-util.h
14 строк
372 B
Daniel Wagner
shared: move util_uuid_to_string/util_fw_to_string to shared/uuid-util
07 авг 2026, 16:15
07 авг 2026, 16:15
bb07b9a
Код
Авторство
О чём код?
/* SPDX-License-Identifier: LGPL-2.1-or-later */ /* * This file is part of nvme-cli. */ #pragma once /* Byte length of a binary UUID. */ #define SHR_UUID_LEN 16 /* Length of a canonical UUID string, including the trailing '\0'. */ #define SHR_UUID_LEN_STRING 37 const char *shr_uuid_to_string(unsigned char uuid[SHR_UUID_LEN]); const char *shr_fw_to_string(char *c);