aboutsummaryrefslogtreecommitdiff
path: root/node.c
diff options
context:
space:
mode:
Diffstat (limited to 'node.c')
-rw-r--r--node.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/node.c b/node.c
index ca6548b..fbbfd14 100644
--- a/node.c
+++ b/node.c
@@ -19,7 +19,7 @@ char *str;
}
/* helpers */
-node* search(root, str)
+node* list_search(root, str)
node *root;
char *str;
{
@@ -33,7 +33,7 @@ char *str;
return NULL;
}
-node* insert(root, str) /*TODO change to accept double pointer*/
+node* list_insert(root, str) /*TODO change to accept double pointer*/
node *root;
char * str;
{