// Copyright 2022 the V8 project 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 "src/utils/hex-format.h" #include <stddef.h> #include <stdint.h> #include "src/base/logging.h" namespace v8 { namespace internal { void FormatBytesToHex(char* formatted, size_t size_of_formatted, const uint8_t* val, size_t size_of_val) { … } } // namespace internal } // namespace v8