aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds-kbdc/tree.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/mds-kbdc/tree.c32
1 files changed, 31 insertions, 1 deletions
diff --git a/src/mds-kbdc/tree.c b/src/mds-kbdc/tree.c
index 45d2ca0..600bf2a 100644
--- a/src/mds-kbdc/tree.c
+++ b/src/mds-kbdc/tree.c
@@ -18,6 +18,37 @@
#include "tree.h"
#include <stdlib.h>
+#include <string.h>
+
+
+
+/**
+ * Initialise a tree node
+ *
+ * @param this The memory slot for the tree node
+ * @param type The type of the node
+ */
+void mds_kbdc_tree_initialise(mds_kbdc_tree_t* restrict this, int type)
+{
+ memset(this, 0, sizeof(mds_kbdc_tree_t));
+ this->type = type;
+}
+
+
+/**
+ * Create a tree node
+ *
+ * @param type The type of the node
+ * @return The tree node, `NULL` on error
+ */
+mds_kbdc_tree_t* mds_kbdc_tree_create(int type)
+{
+ mds_kbdc_tree_t* this = malloc(sizeof(mds_kbdc_tree_t));
+ if (this == NULL)
+ return NULL;
+ mds_kbdc_tree_initialise(this, type);
+ return this;
+}
/**
@@ -127,7 +158,6 @@ static void mds_kbdc_tree_destroy_(mds_kbdc_tree_t* restrict this, int recursive
}
-
/**
* Release all resources stored in a tree node,
* without freeing the node itself or freeing