helper exception callback lesser parameters
[oweals/gnunet.git] / src / include / gnunet_regex_lib.h
index 82a29ec6a2304d8b79a93bfc279d9d639e94dae6..627bcaa22e686f4fe17869eb628fa46875d308a0 100644 (file)
@@ -95,14 +95,19 @@ GNUNET_REGEX_automaton_destroy (struct GNUNET_REGEX_Automaton *a);
 
 
 /**
- * Save the given automaton as a GraphViz dot file.
+ * Save the given automaton as a GraphViz dot file
  *
- * @param a the automaton to be saved.
- * @param filename where to save the file.
+ * @param a the automaton to be saved
+ * @param filename where to save the file
+ * @param verbose if set to GNUNET_YES the generated graph will include extra
+ *                information such as the NFA states that were used to generate
+ *                the DFA state etc.
  */
 void
 GNUNET_REGEX_automaton_save_graph (struct GNUNET_REGEX_Automaton *a,
-                                   const char *filename);
+                                   const char *filename,
+                                   int verbose);
+
 
 /**
  * Evaluates the given 'string' against the given compiled regex.