Home | History | Annotate | Download | only in scripting

Lines Matching refs:left

17   struct tree_node *left;
64 if (root->left != NULL)
65 insert (root->left, word);
70 new_node->left = NULL;
72 root->left = new_node;
83 new_node->left = NULL;
110 new_node->left = NULL;
134 return find_word (dictionary->left, word);
147 if (dictionary->left)
148 print_tree (dictionary->left);