MCPcopy Create free account
hub / github.com/coreutils/coreutils / pad_across_to

Function pad_across_to

src/pr.c:2082–2095  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2080 is position. */
2081
2082static void
2083pad_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

Callers 4

align_columnFunction · 0.85
print_headerFunction · 0.85
read_lineFunction · 0.85
print_storedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected