]> andersk Git - libyaml.git/blobdiff - tests/test-version.c
Fixed most compiler warnings -Wall -Wextra
[libyaml.git] / tests / test-version.c
index 578d6780d9b29a4562e5a70a05a4eccebf656805..0c598377f95f609cdfc5123e79e22d3f3f1fbe0e 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) = %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;
 }
This page took 0.027395 seconds and 4 git commands to generate.