| 350 | } |
| 351 | |
| 352 | static void show_tokens(Graph g, FILE *fp) |
| 353 | { |
| 354 | if (filename && start_token) |
| 355 | /* assume no need to escape filename */ |
| 356 | fprintf(fp, "0,0,filename,%s\n", filename); |
| 357 | |
| 358 | det_coords_adjust_labels(g); |
| 359 | /* First node is root of tree. */ |
| 360 | show_tokens_aux(g->nodes, 0, 0, fp); |
| 361 | } |
| 362 | |
| 363 | int main(int argc, char *argv[]) |
| 364 | { |
no test coverage detected