mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-08 08:11:34 +00:00
* Added JS support * Added some documentation Co-authored-by: Your Name <you@example.com>
16 lines
180 B
C
16 lines
180 B
C
#ifndef _LIB_H
|
|
#define _LIB_H
|
|
|
|
#include "frida-gumjs.h"
|
|
|
|
void lib_config(void);
|
|
|
|
void lib_init(void);
|
|
|
|
guint64 lib_get_text_base(void);
|
|
|
|
guint64 lib_get_text_limit(void);
|
|
|
|
#endif
|
|
|