lib: make graph API const-correct
[babeltrace.git] / lib / babeltrace.c
index 0bcfd1d231aed9f4b3ce9dfaab5dac0c71cd87ed..1623b6ea7f9fe7458ace5ea48ee396f08d5051da 100644 (file)
@@ -1,8 +1,4 @@
 /*
- * babeltrace.c
- *
- * Babeltrace Library
- *
  * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation
  *
  * Author: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
  * SOFTWARE.
  */
 
-#include <babeltrace/babeltrace.h>
-#include <babeltrace/context.h>
-#include <babeltrace/ctf-text/types.h>
+#include <babeltrace/version.h>
+#include <babeltrace/types.h>
 #include <stdlib.h>
 
-int babeltrace_verbose, babeltrace_debug;
+int bt_version_get_major(void)
+{
+       return BT_VERSION_MAJOR;
+}
+
+int bt_version_get_minor(void)
+{
+       return BT_VERSION_MINOR;
+}
+
+int bt_version_get_patch(void) {
+       return BT_VERSION_PATCH;
+}
 
-static
-void __attribute__((constructor)) init_babeltrace_lib(void)
+const char *bt_version_get_extra(void)
 {
-       if (getenv("BABELTRACE_VERBOSE"))
-               babeltrace_verbose = 1;
-       if (getenv("BABELTRACE_DEBUG"))
-               babeltrace_debug = 1;
+       return BT_VERSION_EXTRA;
 }
This page took 0.023949 seconds and 4 git commands to generate.