/*1* Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.2*3* Licensed under the Apache License 2.0 (the "License");4* you may not use this file except in compliance with the License.5* You may obtain a copy of the License at6* https://www.openssl.org/source/license.html7* or in the file LICENSE in the source distribution.8*/910#include <stddef.h> /* for size_t */11#include <openssl/e_os2.h> /* for uint8_t */1213int FuzzerTestOneInput(const uint8_t *buf, size_t len);14int FuzzerInitialize(int *argc, char ***argv);15void FuzzerCleanup(void);1617void FuzzerSetRand(void);18void FuzzerClearRand(void);192021