aboutsummaryrefslogtreecommitdiff
path: root/src/test.c
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2020-06-23 07:39:29 +0200
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2020-06-23 07:39:29 +0200
commitc84c3f459919aa8db2a24c8461aab9e547be961f (patch)
tree58a71c95096f386f0b043f64cecbd382ec978348 /src/test.c
parentca37489b388764b3a8f2d558a9e9a24e3e0d4105 (diff)
downloaddns-c84c3f459919aa8db2a24c8461aab9e547be961f.tar.gz
Comments, white space errors
Diffstat (limited to 'src/test.c')
-rw-r--r--src/test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test.c b/src/test.c
index 974ed8f..07dbb7d 100644
--- a/src/test.c
+++ b/src/test.c
@@ -10,7 +10,7 @@
void run_test ()
{
//Space for temporary tests
-
+
//tree_balanced_insert(NULL, NULL, NULL, 15 );
//Normal tests
test_tree();
@@ -24,10 +24,10 @@ int test_tree ()
printf("\n-> test_tree()\n======\n\n");
struct tree_node* root = NULL;
-
+
tree_insert ( &root, "eins", "Test eins" );
tree_insert ( &root, "zwei", "Test zwei" );
-
+
printf("After Insert\n");
printf("%s\n", tree_get(&root, "zwei"));