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

Function put_word

src/fmt.c:1028–1035  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1026/* Output to stdout the word W. */
1027
1028static void
1029put_word (WORD *w)
1030{
1031 char const *s = w->text;
1032 for (int n = w->length; n != 0; n--)
1033 putchar (*s++);
1034 out_column += w->length;
1035}
1036
1037/* Output to stdout SPACE spaces, or equivalent tabs. */
1038

Callers 1

put_lineFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected