| 171 | // |
| 172 | |
| 173 | static void align(const int column) |
| 174 | { |
| 175 | if (column < 0) |
| 176 | return; |
| 177 | |
| 178 | putc('\n', gpreGlob.out_file); |
| 179 | |
| 180 | for (int i = column / 8; i; --i) |
| 181 | putc('\t', gpreGlob.out_file); |
| 182 | |
| 183 | for (int i = column % 8; i; --i) |
| 184 | putc(' ', gpreGlob.out_file); |
| 185 | } |
| 186 | |
| 187 | |
| 188 | //____________________________________________________________ |
no test coverage detected