diff options
author | Your Name <you@example.com> | 2021-11-10 18:05:29 +0000 |
---|---|---|
committer | Your Name <you@example.com> | 2021-11-10 18:05:29 +0000 |
commit | 7e1dba2e6b00f620d6ec3f1c2a75e69dcc7a82e5 (patch) | |
tree | 233928e21db382786a5aea477073ee9f2b028ae9 /frida_mode/include/util.h | |
parent | 533e979010ca338df6fc415d87668f8187752915 (diff) | |
download | afl++-7e1dba2e6b00f620d6ec3f1c2a75e69dcc7a82e5.tar.gz |
Fix block ID handling
Diffstat (limited to 'frida_mode/include/util.h')
-rw-r--r-- | frida_mode/include/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/frida_mode/include/util.h b/frida_mode/include/util.h index 77fbda94..77491ea8 100644 --- a/frida_mode/include/util.h +++ b/frida_mode/include/util.h @@ -12,6 +12,8 @@ guint64 util_read_address(char *key); guint64 util_read_num(char *key); gboolean util_output_enabled(void); +gsize util_rotate(gsize val, gsize shift, gsize size); +gsize util_log2(gsize val); #define FOKF(x...) \ do { \ |