/* * Copyright (c) 2020, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include extern "C" int LLVMFuzzerTestOneInput(uint8_t const* data, size_t size) { auto source = StringView(static_cast(data), size); Shell::Parser parser(source); (void)parser.parse(); return 0; }