xref: /aosp_15_r20/external/sg3_utils/include/sg_lib_names.h (revision 44704f698541f6367e81f991ef8bb54ccbf3fc18)
1 #ifndef SG_LIB_NAMES_H
2 #define SG_LIB_NAMES_H
3 
4 /*
5  * Copyright (c) 2022 Douglas Gilbert.
6  * All rights reserved.
7  * Use of this source code is governed by a BSD-style
8  * license that can be found in the BSD_LICENSE file.
9  *
10  * SPDX-License-Identifier: BSD-2-Clause
11  */
12 
13 #include <stdint.h>
14 
15 #include "sg_lib_data.h"
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
21 extern struct sg_lib_simple_value_name_t sg_lib_names_mode_arr[];
22 extern struct sg_lib_simple_value_name_t sg_lib_names_vpd_arr[];
23 
24 extern const size_t sg_lib_names_mode_len;
25 extern const size_t sg_lib_names_vpd_len;
26 
27 #ifdef __cplusplus
28 }
29 #endif
30 
31 #endif  /* end of SG_LIB_NAMES */
32