| 243 | } |
| 244 | |
| 245 | static void write_state_bool(const struct am_state *state, |
| 246 | const char *name, int value) |
| 247 | { |
| 248 | write_state_text(state, name, value ? "t" : "f"); |
| 249 | } |
| 250 | |
| 251 | /** |
| 252 | * If state->quiet is false, calls fprintf(fp, fmt, ...), and appends a newline |
no test coverage detected