Blame fuzz/fuzzer.h

Packit c4476c
/*
Packit c4476c
 * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
Packit c4476c
 *
Packit c4476c
 * Licensed under the OpenSSL licenses, (the "License");
Packit c4476c
 * you may not use this file except in compliance with the License.
Packit c4476c
 * You may obtain a copy of the License at
Packit c4476c
 * https://www.openssl.org/source/license.html
Packit c4476c
 * or in the file LICENSE in the source distribution.
Packit c4476c
 */
Packit c4476c
Packit c4476c
int FuzzerTestOneInput(const uint8_t *buf, size_t len);
Packit c4476c
int FuzzerInitialize(int *argc, char ***argv);
Packit c4476c
void FuzzerCleanup(void);
Packit c4476c
void FuzzerSetRand(void);