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