// Copyright 2021 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/base/strings.h" #include <cstdint> #include <cstring> #include <limits> #include "src/base/platform/platform.h" namespace v8 { namespace base { int VSNPrintF(Vector<char> str, const char* format, va_list args) { … } int SNPrintF(Vector<char> str, const char* format, ...) { … } void StrNCpy(base::Vector<char> dest, const char* src, size_t n) { … } } // namespace base } // namespace v8