blob: b9bec84ce411564f090cbb99835bd726a168e68f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Copyright (c) 2016-2021, The Tor Project, Inc. */
/* See LICENSE for licensing information */
#ifndef FUZZING_H
#define FUZZING_H
int fuzz_init(void);
int fuzz_cleanup(void);
int fuzz_main(const uint8_t *data, size_t sz);
void disable_signature_checking(void);
#endif /* !defined(FUZZING_H) */
|