| 508 | // |
| 509 | |
| 510 | static void align(const int column) |
| 511 | { |
| 512 | putc('\n', gpreGlob.out_file); |
| 513 | |
| 514 | if (column < 0) |
| 515 | return; |
| 516 | |
| 517 | for (int i = column / 8; i; --i) |
| 518 | putc('\t', gpreGlob.out_file); |
| 519 | |
| 520 | for (int i = column % 8; i; --i) |
| 521 | putc(' ', gpreGlob.out_file); |
| 522 | } |
| 523 | |
| 524 | |
| 525 | //____________________________________________________________ |
no test coverage detected