Sha256: a90072c6a7b2a2f04e460971d842f930636e01c3067b8225939617b412765324
Contents?: true
Size: 592 Bytes
Versions: 25
Compression:
Stored size: 592 Bytes
Contents
#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) = %d\n", sizeof(yaml_token_t)); printf("sizeof(event) = %d\n", sizeof(yaml_event_t)); printf("sizeof(parser) = %d\n", sizeof(yaml_parser_t)); return 0; }
Version data entries
25 entries across 25 versions & 2 rubygems