Commit 118be38a authored by h702579998's avatar h702579998

Made the function names in test.c lowercase in order to fit the rest of the files

parent 9f539681
...@@ -7,11 +7,11 @@ int main(){ ...@@ -7,11 +7,11 @@ int main(){
NODE *one = construct(1, two); NODE *one = construct(1, two);
NODE *root = construct(0, one); NODE *root = construct(0, one);
Print_List(root); print_list(root);
NODE *target = Search(root, 2); NODE *target = search(root, 2);
Print_Node(target); print_node(target);
Delete_List(root); delete_list(root);
Print_List(root); print_list(root);
return 1; return 1;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment