chromium/third_party/pdfium/testing/fuzzers/pdf_xfa_raw_fuzzer.cc

// Copyright 2021 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <fuzzer/FuzzedDataProvider.h>

#include <cctype>
#include <string>

#include "public/fpdf_formfill.h"
#include "testing/fuzzers/pdf_fuzzer_templates.h"
#include "testing/fuzzers/pdfium_fuzzer_helper.h"

class PDFiumXFAFuzzer : public PDFiumFuzzerHelper {};

bool IsValidForFuzzing(const uint8_t* data, size_t size) {}

extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {}