]> andersk Git - libyaml.git/blob - include/yaml/yaml_version.h
9718db240806bf901f867cf2485a0b1ff3cd777a
[libyaml.git] / include / yaml / yaml_version.h
1 /*
2  * @file yaml_version.h
3  * @brief Version information.
4  *
5  * Do not include yaml_version.h directly.
6  */
7
8 #ifndef YAML_VERSION_H
9 #define YAML_VERSION_H
10
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14
15 /*
16  * @brief Get the library version.
17  */
18
19 const char *
20 yaml_get_version_string(void);
21
22 /*
23  * @brief Get the library version numbers.
24  */
25
26 void
27 yaml_get_version(int *major, int *minor, int *patch);
28
29 #ifdef __cplusplus
30 }
31 #endif
32
33 #endif /* #ifndef YAML_VERSION_H */
This page took 0.031942 seconds and 3 git commands to generate.