about summary refs log tree commit diff
path: root/include/afl-fuzz.h
diff options
context:
space:
mode:
authorDominik Maier <domenukk@gmail.com>2020-03-27 23:30:15 +0100
committerDominik Maier <domenukk@gmail.com>2020-04-01 13:10:05 +0200
commite71c2937de8a19cf9b3627b86894cafabcd45513 (patch)
tree1af4449f1a7a891e4c0aafc487be7c4bc9de7b5c /include/afl-fuzz.h
parent3d6c58df53bf2fecc068d1a4d48fbe4926d6257d (diff)
downloadafl++-e71c2937de8a19cf9b3627b86894cafabcd45513.tar.gz
code format
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r--include/afl-fuzz.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h
index 2154d860..32eaf4af 100644
--- a/include/afl-fuzz.h
+++ b/include/afl-fuzz.h
@@ -583,27 +583,26 @@ typedef struct afl_state {
   u8 clean_trace_custom[MAP_SIZE];
   u8 first_trace[MAP_SIZE];
 
-/*needed for afl_fuzz_one */
-// TODO: see which we can reuse
-  u8 *out_buf;
+  /*needed for afl_fuzz_one */
+  // TODO: see which we can reuse
+  u8 *   out_buf;
   size_t out_size;
 
-  u8 *out_scratch_buf;
+  u8 *   out_scratch_buf;
   size_t out_scratch_size;
 
-  u8 *eff_buf;
+  u8 *   eff_buf;
   size_t eff_size;
 
-  u8 *in_buf;
+  u8 *   in_buf;
   size_t in_size;
 
-  u8 *in_scratch_buf;
+  u8 *   in_scratch_buf;
   size_t in_scratch_size;
 
-  u8 *ex_buf;
+  u8 *   ex_buf;
   size_t ex_size;
 
-
 } afl_state_t;
 
 /* A global pointer to all instances is needed (for now) for signals to arrive