summaryrefslogtreecommitdiff
path: root/tests/test-version.c
blob: 578d6780d9b29a4562e5a70a05a4eccebf656805 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <yaml/yaml.h>

#include <stdlib.h>
#include <stdio.h>
#include <assert.h>

int
main(void)
{
    int major = -1;
    int minor = -1;
    int patch = -1;
    char buf[64];

    yaml_get_version(&major, &minor, &patch);
    sprintf(buf, "%d.%d.%d", major, minor, patch);
    assert(strcmp(buf, yaml_get_version_string()) == 0);

    return 0;
}