cex: style: prefer FOO_print to print_FOO

* src/state-item.h, src/state-item.c (print_state_item): Rename as...
(state_item_print): this.
* src/counterexample.c (print_counterexample): Rename as...
(counterexample_print): this.
This commit is contained in:
Akim Demaille
2020-07-28 19:46:41 +02:00
parent be95a4fe29
commit ece343d2c2
5 changed files with 15 additions and 14 deletions

View File

@@ -256,7 +256,7 @@ shortest_path_from_start (state_item_number target, symbol_number next_sym)
gl_list_iterator_t it = gl_list_iterator (res);
const void *sip;
while (gl_list_iterator_next (&it, &sip, NULL))
print_state_item ((state_item *) sip, stdout, "");
state_item_print ((state_item *) sip, stdout, "");
}
return res;
}