/* * Copyright 2017 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ // Make sure that the PRI format string macros are defined #ifndef __STDC_FORMAT_MACROS #define __STDC_FORMAT_MACROS #endif #include "src/utils/SkJSONWriter.h" #include <inttypes.h> #include <stdarg.h> #include <stdio.h> void SkJSONWriter::appendS64(int64_t value) { … } void SkJSONWriter::appendU64(uint64_t value) { … } void SkJSONWriter::appendHexU64(uint64_t value) { … } void SkJSONWriter::appendf(const char* fmt, ...) { … }