// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "util/stringprintf.h" #include <cstdarg> #include <cstdio> #include <iomanip> #include <sstream> #include "util/osp_logging.h" namespace openscreen { std::string StringPrintf(const char* format, ...) { … } std::string HexEncode(const uint8_t* bytes, size_t len) { … } std::string HexEncode(ByteView bytes) { … } } // namespace openscreen