libmetal  latest
version.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015, Xilinx Inc. and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 /*
8  * @file version.h
9  * @brief Library version information for libmetal.
10  */
11 
12 #ifndef __METAL_VERSION__H__
13 #define __METAL_VERSION__H__
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
33 int metal_ver_major(void);
34 
45 int metal_ver_minor(void);
46 
57 int metal_ver_patch(void);
58 
69 const char *metal_ver(void);
70 
73 #ifdef __cplusplus
74 }
75 #endif
76 
77 #endif /* __METAL_VERSION__H__ */
int metal_ver_major(void)
Library major version number.
Definition: version.c:9
int metal_ver_patch(void)
Library patch level.
Definition: version.c:19
int metal_ver_minor(void)
Library minor version number.
Definition: version.c:14
const char * metal_ver(void)
Library version string.
Definition: version.c:24