mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-14 19:08:08 +00:00
* Added JS support * Added some documentation Co-authored-by: Your Name <you@example.com>
15 lines
217 B
C
15 lines
217 B
C
#ifndef _UTIL_H
|
|
#define _UTIL_H
|
|
|
|
#include "frida-gumjs.h"
|
|
|
|
#define UNUSED_PARAMETER(x) (void)(x)
|
|
#define IGNORED_RETURN(x) (void)!(x)
|
|
|
|
guint64 util_read_address(char *key);
|
|
|
|
guint64 util_read_num(char *key);
|
|
|
|
#endif
|
|
|