mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-08 08:11:34 +00:00
16 lines
306 B
C
16 lines
306 B
C
#ifndef _ASAN_H
|
|
#define _ASAN_H
|
|
|
|
#include "frida-gumjs.h"
|
|
|
|
extern gboolean asan_initialized;
|
|
|
|
void asan_config(void);
|
|
void asan_init(void);
|
|
void asan_arch_init(void);
|
|
void asan_instrument(const cs_insn *instr, GumStalkerIterator *iterator);
|
|
void asan_exclude_module_by_symbol(gchar *symbol_name);
|
|
|
|
#endif
|
|
|