]> andersk Git - libyaml.git/blame - src/version.c
Implementing Reader: first tries.
[libyaml.git] / src / version.c
CommitLineData
cec6fc98
KS
1
2#if HAVE_CONFIG_H
3#include <config.h>
4#endif
5
6#include <yaml/yaml.h>
7
8const char *
9yaml_get_version_string(void)
10{
11 return YAML_VERSION_STRING;
12}
13
14void
15yaml_get_version(int *major, int *minor, int *patch)
16{
17 *major = YAML_VERSION_MAJOR;
18 *minor = YAML_VERSION_MINOR;
19 *patch = YAML_VERSION_PATCH;
20}
21
This page took 0.302851 seconds and 5 git commands to generate.