| 106 | } |
| 107 | |
| 108 | void disp(char* str) { |
| 109 | while(*str != '\0') { |
| 110 | printf("%c", *str); |
| 111 | str++; |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | void initTree(EXT *tree, char* inputString, int size) { |
| 116 | inputString = convertToPostFix(inputString, size); |
nothing calls this directly
no outgoing calls
no test coverage detected