mie: select: add filename parameter to graphviz dump function

This commit is contained in:
2025-11-15 22:34:16 +00:00
parent c18d719b7d
commit fe4abeb96d
2 changed files with 9 additions and 6 deletions

View File

@@ -43,6 +43,7 @@ MIE_API enum mie_status mie_select_graph_get_node(
struct mie_type **values, size_t nr_values, struct mie_select_node **out);
MIE_API void mie_select_graph_dump_text(struct mie_select_graph *graph);
MIE_API void mie_select_graph_dump_dot(struct mie_select_graph *graph);
MIE_API void mie_select_graph_dump_dot(
struct mie_select_graph *graph, const char *filename);
#endif