From 92cccf2bfe7c5643765f5f2ab96631d230209fc0 Mon Sep 17 00:00:00 2001 From: Weber Date: Sat, 27 Apr 2024 19:26:35 +0000 Subject: [PATCH] test --- a3/binary_search_tree.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/a3/binary_search_tree.c b/a3/binary_search_tree.c index 6075137..6463b19 100644 --- a/a3/binary_search_tree.c +++ b/a3/binary_search_tree.c @@ -1,3 +1,6 @@ + +#include "binary_search_tree.h" +#include #ifndef BINARY_SEARCH_TREE_H #define BINARY_SEARCH_TREE_H #include @@ -16,9 +19,6 @@ int *sorted_data(node_t *tree); #endif -#include "binary_search_tree.h" -#include - static node_t *create_node(int data) { node_t *new_node = malloc(sizeof(node_t)); if (new_node != NULL) {