about summary refs log tree commit diff
path: root/include/afl-fuzz.h
diff options
context:
space:
mode:
authorThomas Rooijakkers <thomas.rooijakkers@tno.nl>2020-09-04 15:46:46 +0200
committerThomas Rooijakkers <thomas.rooijakkers@tno.nl>2020-09-04 15:54:57 +0200
commit6adaacbb3aed2f967b4f3aeacdc41e91502914b3 (patch)
treef5c065b8e84a03c626f9451bb5df7dca5bcb7b5c /include/afl-fuzz.h
parente45ae8e5da9d603976a4fde1184455e5e9c49051 (diff)
downloadafl++-6adaacbb3aed2f967b4f3aeacdc41e91502914b3.tar.gz
Seperate fuzzer_setup from fuzzer_stats, only write fuzzer_setup at the start
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r--include/afl-fuzz.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h
index f3a76492..f9858669 100644
--- a/include/afl-fuzz.h
+++ b/include/afl-fuzz.h
@@ -945,10 +945,12 @@ void destroy_extras(afl_state_t *);
 
 /* Stats */
 
-void write_stats_file(afl_state_t *, double, double, double);
-void maybe_update_plot_file(afl_state_t *, double, double);
-void show_stats(afl_state_t *);
-void show_init_stats(afl_state_t *);
+FILE *open_file(const char *);
+void  write_fuzzer_setup_file(afl_state_t *);
+void  write_stats_file(afl_state_t *, double, double, double);
+void  maybe_update_plot_file(afl_state_t *, double, double);
+void  show_stats(afl_state_t *);
+void  show_init_stats(afl_state_t *);
 
 /* Run */