]> andersk Git - libyaml.git/blobdiff - tests/test-version.c
Refactor internal and external API.
[libyaml.git] / tests / test-version.c
index 578d6780d9b29a4562e5a70a05a4eccebf656805..5982f7d753183546618f1e8b758090fc635dd3fc 100644 (file)
@@ -1,4 +1,4 @@
-#include <yaml/yaml.h>
+#include <yaml.h>
 
 #include <stdlib.h>
 #include <stdio.h>
@@ -16,5 +16,10 @@ main(void)
     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;
 }
This page took 0.054641 seconds and 4 git commands to generate.