]> andersk Git - libyaml.git/blobdiff - tests/test-version.c
Merge commit 'upstream/0.1.3' into debian
[libyaml.git] / tests / test-version.c
index 578d6780d9b29a4562e5a70a05a4eccebf656805..e3e4a1623b3aa43b158902c3bf5c2155fb61d79e 100644 (file)
@@ -1,7 +1,11 @@
-#include <yaml/yaml.h>
+#include <yaml.h>
 
 #include <stdlib.h>
 #include <stdio.h>
+
+#ifdef NDEBUG
+#undef NDEBUG
+#endif
 #include <assert.h>
 
 int
@@ -16,5 +20,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.046175 seconds and 4 git commands to generate.