mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 21:53:48 +01:00
14 lines
291 B
C
14 lines
291 B
C
/* Copyright (c) 2016-2018, 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 */
|
|
|