| 530 | // |
| 531 | |
| 532 | static void align( int column) |
| 533 | { |
| 534 | if (column < 0) |
| 535 | return; |
| 536 | |
| 537 | putc('\n', gpreGlob.out_file); |
| 538 | |
| 539 | for (int i = column / 8; i; --i) |
| 540 | putc('\t', gpreGlob.out_file); |
| 541 | |
| 542 | for (int i = column % 8; i; --i) |
| 543 | putc(' ', gpreGlob.out_file); |
| 544 | } |
| 545 | |
| 546 | |
| 547 | //____________________________________________________________ |
no test coverage detected