print out what relation is used
parent
a97b6602a0
commit
c45131d029
|
@ -85,9 +85,10 @@ tree_print(node_t* root, stem head)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
printf("─%s", node_string[root->type]);
|
printf("─%s", node_string[root->type]);
|
||||||
if ( root->type == IDENTIFIER_DATA ||
|
if ( root->type == IDENTIFIER_DATA ||
|
||||||
root->type == STRING_DATA ||
|
root->type == STRING_DATA ||
|
||||||
root->type == EXPRESSION )
|
root->type == EXPRESSION ||
|
||||||
|
root->type == RELATION)
|
||||||
printf("(%s)", (char *) root->data);
|
printf("(%s)", (char *) root->data);
|
||||||
else if (root->type == NUMBER_DATA)
|
else if (root->type == NUMBER_DATA)
|
||||||
printf("(%ld)", *((int64_t *)root->data));
|
printf("(%ld)", *((int64_t *)root->data));
|
||||||
|
|
Loading…
Reference in New Issue