aboutsummaryrefslogtreecommitdiff
path: root/include/common.h
diff options
context:
space:
mode:
authorDominik Maier <domenukk@gmail.com>2020-04-16 17:50:08 +0200
committerDominik Maier <domenukk@gmail.com>2020-04-16 17:50:08 +0200
commit6940e136296d185391a34b5d829a759ac517594e (patch)
tree6823be896d39ee741a31a30b8afde6bdce7137fe /include/common.h
parent380ff114e9a369c6b366c40a146eed37602d2620 (diff)
downloadAFLplusplus-6940e136296d185391a34b5d829a759ac517594e.tar.gz
removed redundent funcs
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h
index 8dd66355..f5ace878 100644
--- a/include/common.h
+++ b/include/common.h
@@ -51,6 +51,16 @@ char * get_afl_env(char *env);
extern u8 be_quiet;
extern u8 *doc_path; /* path to documentation dir */
+/* Find binary, used by analyze, showmap, tmin
+ @returns the path, allocating the string */
+
+u8 *find_binary(u8 *fname);
+
+/* Read a bitmap from file fname to memory
+ This is for the -B option again. */
+
+void read_bitmap(u8 *fname, u8 *map, size_t len);
+
/* Get unix time in milliseconds */
u64 get_cur_time(void);