[M120 Migration][VD] Enable direct rendering for TVPlus
[platform/framework/web/chromium-efl.git] / components / apdu / apdu_fuzzer.cc
1 // Copyright 2017 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/apdu/apdu_command.h"
6 #include "components/apdu/apdu_response.h"
7
8 namespace apdu {
9
10 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
11   ApduCommand::CreateFromMessage(base::make_span(data, size));
12   ApduResponse::CreateFromMessage(base::make_span(data, size));
13   return 0;
14 }
15
16 }  // namespace apdu