| 482 | // |
| 483 | |
| 484 | static void align( int column) |
| 485 | { |
| 486 | if (column < 0) |
| 487 | return; |
| 488 | |
| 489 | putc('\n', gpreGlob.out_file); |
| 490 | |
| 491 | for (int i = column / 8; i; --i) |
| 492 | putc('\t', gpreGlob.out_file); |
| 493 | |
| 494 | for (int i = column % 8; i; --i) |
| 495 | putc(' ', gpreGlob.out_file); |
| 496 | } |
| 497 | |
| 498 | |
| 499 | //____________________________________________________________ |
no test coverage detected