zaye/deps/libyaml/tests/test-version.c
torque 11e8fad44e
git subrepo clone --branch=0.2.5 https://github.com/yaml/libyaml.git deps/libyaml
subrepo:
  subdir:   "deps/libyaml"
  merged:   "2c891fc"
upstream:
  origin:   "https://github.com/yaml/libyaml.git"
  branch:   "0.2.5"
  commit:   "2c891fc"
git-subrepo:
  version:  "0.4.6"
  origin:   "???"
  commit:   "???"
2024-03-07 22:19:16 -08:00

30 lines
613 B
C

#include <yaml.h>
#include <stdlib.h>
#include <stdio.h>
#ifdef NDEBUG
#undef NDEBUG
#endif
#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);
/* Print structure sizes. */
printf("sizeof(token) = %ld\n", (long)sizeof(yaml_token_t));
printf("sizeof(event) = %ld\n", (long)sizeof(yaml_event_t));
printf("sizeof(parser) = %ld\n", (long)sizeof(yaml_parser_t));
return 0;
}