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(){
NODE *one = construct(1, two);
NODE *root = construct(0, one);
Print_List(root);
NODE *target = Search(root, 2);
Print_Node(target);
Delete_List(root);
Print_List(root);
print_list(root);
NODE *target = search(root, 2);
print_node(target);
delete_list(root);
print_list(root);
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