| 1026 | /* Output to stdout the word W. */ |
| 1027 | |
| 1028 | static void |
| 1029 | put_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 |