flatc-fork 0.6.0+25.12.19-2026-02-06-03fffb2

Vendored executable of flatbuffer's `flatc` (maintained fork).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stddef.h>
#include <stdint.h>

#include <string>

#include "cpp17/generated_cpp17/monster_test_generated.h"

extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
  flatbuffers::Verifier verifier(data, size);
  MyGame::Example::VerifyMonsterBuffer(verifier);
  flatbuffers::SizeVerifier size_verifier(data, size);
  MyGame::Example::VerifyMonsterBuffer(size_verifier);
  return 0;
}