// Copyright (c) Microsoft Corporation. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception #include // include first, for native shared #include #include "xmath.hpp" #include "xxcctype.hpp" #include "xxdftype.hpp" _EXTERN_C_UNLESS_PURE // TRANSITION, ABI: preserved for binary compatibility _CRTIMP2_PURE FTYPE __CLRCALL_PURE_OR_CDECL _Stodx(const CTYPE* s, CTYPE** endptr, long pten, int* perr) noexcept #include "xxstod.hpp" // TRANSITION, ABI: preserved for binary compatibility _CRTIMP2_PURE FTYPE __CLRCALL_PURE_OR_CDECL _Stod(const CTYPE* s, CTYPE** endptr, long pten) noexcept { // convert string, discard error code return _Stodx(s, endptr, pten, nullptr); } _END_EXTERN_C_UNLESS_PURE