mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-22 00:46:36 +02:00
15 lines
226 B
C
15 lines
226 B
C
#ifndef _FUZZING_H_
|
|
#define _FUZZING_H_
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
|
|
void fuzzing_tick(void);
|
|
|
|
void fuzzing_throttle(void);
|
|
|
|
bool fuzzing_testinput(const uint8_t * data, size_t size);
|
|
|
|
|
|
#endif /* !_FUZZING_H_ */
|