// 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. // File for holding strings representing PDF templates that are used by fuzzers. #ifndef TESTING_FUZZERS_PDF_FUZZER_TEMPLATES_H_ #define TESTING_FUZZERS_PDF_FUZZER_TEMPLATES_H_ constexpr char kSimplePdfTemplate[] = …; // We define the bytes of the header explicitly to make the values more readable constexpr uint8_t kSimplePdfHeader[] = …; constexpr char kCatalog[] = …; constexpr char kSimpleXfaObjWrapper[] = …; constexpr char kSimplePagesObj[] = …; constexpr char kSimplePageObj[] = …; constexpr char kSimplePreamble[] = …; constexpr char kSimplePostamble[] = …; #endif // TESTING_FUZZERS_PDF_FUZZER_TEMPLATES_H_