/
githubmirror
/
sg3_utils
Обзор
Документация
Войти
/
githubmirror
/
sg3_utils
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
include/sg_lib_names.h
34 строки
791 B
Douglas Gilbert
sg_vpd: add --descriptors option, for version descriptors; re-organiize library for SNT code
14 дек 2023, 06:23
14 дек 2023, 06:23
ad3e3d6
Код
Авторство
О чём код?
#ifndef SG_LIB_NAMES_H #define SG_LIB_NAMES_H /* * Copyright (c) 2022-2023 Douglas Gilbert. * All rights reserved. * Use of this source code is governed by a BSD-style * license that can be found in the BSD_LICENSE file. * * SPDX-License-Identifier: BSD-2-Clause */ #include <stdint.h> #include "sg_lib_data.h" #ifdef __cplusplus extern "C" { #endif extern const struct sg_lib_simple_value_name_t sg_lib_names_mode_arr[]; extern const struct sg_lib_simple_value_name_t sg_lib_names_vpd_arr[]; extern const struct sg_lib_simple_value_name_t sg_lib_version_descriptor_arr[]; extern const size_t sg_lib_names_mode_len; extern const size_t sg_lib_names_vpd_len; extern const size_t sg_lib_version_descriptor_len; #ifdef __cplusplus } #endif #endif /* end of SG_LIB_NAMES */