| 2080 | is position. */ |
| 2081 | |
| 2082 | static void |
| 2083 | pad_across_to (int position) |
| 2084 | { |
| 2085 | int h = output_position; |
| 2086 | |
| 2087 | if (tabify_output) |
| 2088 | spaces_not_printed = position - output_position; |
| 2089 | else |
| 2090 | { |
| 2091 | while (++h <= position) |
| 2092 | putchar (' '); |
| 2093 | output_position = position; |
| 2094 | } |
| 2095 | } |
| 2096 | |
| 2097 | /* Pad to the bottom of the page. |
| 2098 |
no outgoing calls
no test coverage detected