| 687 | } |
| 688 | |
| 689 | static void |
| 690 | out_string (char *pformat, size_t prefix_len, char const *arg) |
| 691 | { |
| 692 | make_format (pformat, prefix_len, "-", "s"); |
| 693 | printf (pformat, arg); |
| 694 | } |
| 695 | static int |
| 696 | out_int (char *pformat, size_t prefix_len, intmax_t arg) |
| 697 | { |
no test coverage detected