diff --git a/cv8/program.c b/cv8/program.c index b34a192..dfff5fe 100644 --- a/cv8/program.c +++ b/cv8/program.c @@ -28,9 +28,6 @@ struct node* insert(struct node* root, char data[SIZE]){ root = getNewNode(data); return root; } - if(strncmp(data, "*", 1)){ - return root; - } if(root->left == NULL){ root->left = insert(root->left,data); }else{