1 // Copyright 2021 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 <stddef.h> 6 #include <stdint.h> 7 8 #include "base/strings/string_piece.h" 9 #include "base/time/time.h" 10 #include "base/time/time_delta_from_string.h" 11 LLVMFuzzerTestOneInput(const uint8_t * data,size_t size)12extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { 13 base::StringPiece input(reinterpret_cast<const char*>(data), size); 14 base::TimeDeltaFromString(input); 15 return 0; 16 } 17