aboutsummaryrefslogtreecommitdiff
path: root/src/test/fuzz/fuzzing.h
blob: 6cbcdc41adae97d57e34d5d10ccabe7f82b510cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Copyright (c) 2016-2020, 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) */