dec3298d9c
NOPRESUBMIT=true TBR=mstarzinger@chromium.org Bug: v8:9247 Change-Id: I4cd6b79a1c2cba944f6f23caed59d4f1a4ee358b Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1624217 Commit-Queue: Yang Guo <yangguo@chromium.org> Reviewed-by: Igor Sheludko <ishell@chromium.org> Reviewed-by: Georg Neis <neis@chromium.org> Reviewed-by: Jaroslav Sevcik <jarin@chromium.org> Cr-Commit-Position: refs/heads/master@{#61790}
21 lines
597 B
C++
21 lines
597 B
C++
// Copyright 2010 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.
|
|
|
|
#ifndef V8_NUMBERS_STRTOD_H_
|
|
#define V8_NUMBERS_STRTOD_H_
|
|
|
|
#include "src/utils/vector.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
|
|
// The buffer must only contain digits in the range [0-9]. It must not
|
|
// contain a dot or a sign. It must not start with '0', and must not be empty.
|
|
V8_EXPORT_PRIVATE double Strtod(Vector<const char> buffer, int exponent);
|
|
|
|
} // namespace internal
|
|
} // namespace v8
|
|
|
|
#endif // V8_NUMBERS_STRTOD_H_
|