From 046109760902927a4832ee05d76332b4d51a7e49 Mon Sep 17 00:00:00 2001 From: Ben Skuppin Date: Thu, 11 Dec 2025 14:52:48 +0100 Subject: [PATCH] finale version --- bintree.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/bintree.c b/bintree.c index a5bc809..747cd35 100644 --- a/bintree.c +++ b/bintree.c @@ -37,11 +37,6 @@ TreeNode *addToTree(TreeNode *root, const void *data, size_t dataSize, CompareFc if (isDuplicate != NULL) { *isDuplicate = 1; } - /* - if (isDuplicate == NULL){ - root->right = addToTree(root->right, data, dataSize, compareFct, NULL); - return root; - }*/ return root;