| 68 | } |
| 69 | |
| 70 | static const char *get_parameter(const char *name) |
| 71 | { |
| 72 | struct string_list_item *i; |
| 73 | i = string_list_lookup(get_parameters(), name); |
| 74 | return i ? i->util : NULL; |
| 75 | } |
| 76 | |
| 77 | __attribute__((format (printf, 2, 3))) |
| 78 | static void format_write(int fd, const char *fmt, ...) |
no test coverage detected