1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef MS_FUZZER_UTILS_HPP #define MS_FUZZER_UTILS_HPP #include "common.hpp" namespace Fuzzer { namespace Utils { void Fuzz(const uint8_t* data, size_t len); } // namespace Utils } // namespace Fuzzer #endif