Files
tor/src/test/fuzz/fuzzing.h
T
2019-06-05 09:33:35 -04:00

14 lines
301 B
C

/* Copyright (c) 2016-2019, 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) */