blob: 4295743458b8f5d8ba5668eaa15db4e192c5b59e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Copyright (c) 2016, 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 /* FUZZING_H */
|