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>
14 lines
179 B
C
14 lines
179 B
C
#ifndef _OUTPUT_H
|
|
#define _OUTPUT_H
|
|
|
|
#include "frida-gumjs.h"
|
|
|
|
extern char *output_stdout;
|
|
extern char *output_stderr;
|
|
|
|
void output_config(void);
|
|
void output_init(void);
|
|
|
|
#endif
|
|
|