diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-04-16 19:53:51 +0200 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-04-16 19:53:51 +0200 |
commit | 23ea7279159dce964c69b3dfa5e7e36f3d5a5085 (patch) | |
tree | c29eeca17acee61a862646149b8cd1d9a4cf97f3 /include/common.h | |
parent | f157bca54858dce131e90f664da2505d43e0f65f (diff) | |
parent | 35937e62634f69b34c852abb0aaeca546a712f4f (diff) | |
download | afl++-23ea7279159dce964c69b3dfa5e7e36f3d5a5085.tar.gz |
Merge branch 'dev' of github.com:vanhauser-thc/AFLplusplus into dev
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 10 |
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); |