| 521 | // |
| 522 | |
| 523 | static void align( int column) |
| 524 | { |
| 525 | if (column < 0) |
| 526 | return; |
| 527 | |
| 528 | putc('\n', gpreGlob.out_file); |
| 529 | |
| 530 | for (int i = column / 8; i; --i) |
| 531 | putc('\t', gpreGlob.out_file); |
| 532 | |
| 533 | for (int i = column % 8; i; --i) |
| 534 | putc(' ', gpreGlob.out_file); |
| 535 | } |
| 536 | |
| 537 | |
| 538 | //____________________________________________________________ |
no test coverage detected