diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2020-06-23 07:39:29 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2020-06-23 07:39:29 +0200 |
commit | c84c3f459919aa8db2a24c8461aab9e547be961f (patch) | |
tree | 58a71c95096f386f0b043f64cecbd382ec978348 /src/test.c | |
parent | ca37489b388764b3a8f2d558a9e9a24e3e0d4105 (diff) | |
download | dns-c84c3f459919aa8db2a24c8461aab9e547be961f.tar.gz |
Comments, white space errors
Diffstat (limited to 'src/test.c')
-rw-r--r-- | src/test.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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")); |