json_platform.h 837 Bytes
Newer Older
1 2 3 4 5 6 7
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef V8_CRDTP_JSON_PLATFORM_H_
#define V8_CRDTP_JSON_PLATFORM_H_

8
#include <string>
9 10 11

namespace v8_crdtp {
namespace json {
12 13 14 15 16 17 18
// These routines are implemented in json_platform.cc, or in a
// platform-dependent (code-base dependent) custom replacement.
// E.g., json_platform_chromium.cc, json_platform_v8.cc.
namespace platform {
// Parses |str| into |result|. Returns false iff there are
// leftover characters or parsing errors.
bool StrToD(const char* str, double* result);
19

20 21 22
// Prints |value| in a format suitable for JSON.
std::string DToStr(double value);
}  // namespace platform
23 24 25 26
}  // namespace json
}  // namespace v8_crdtp

#endif  // V8_CRDTP_JSON_PLATFORM_H_