Print N spaces, where 0 <= N. Do not rely on printf ("%*s", N, "") as N may exceed INT_MAX. */
| 505 | /* Print N spaces, where 0 <= N. |
| 506 | Do not rely on printf ("%*s", N, "") as N may exceed INT_MAX. */ |
| 507 | static void |
| 508 | print_n_spaces (intmax_t n) |
| 509 | { |
| 510 | for (; 0 < n; n--) |
| 511 | putchar (' '); |
| 512 | } |
| 513 | |
| 514 | /* If there are FIELDS fields, return the total padding up to the |
| 515 | start of field I, where I < FIELDS. PAD is the total padding for |