mirror of
https://github.com/intel/llvm.git
synced 2026-01-13 19:08:21 +08:00
This change follows the pattern of
315dfe5865 by making strtofloat also
accept wchar_t* strings
(in addition to regular char*). It uses overloads from wctype_utils or
specialized functions to ensure comparison with literal characters (or
literal strings) pick char or wchar_t variants based on the argument
type.
The wcstof implementation is added, with unit test cases copied from
strtof test suite.
31 lines
992 B
C++
31 lines
992 B
C++
//===-- Implementation of wcstof ------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "src/wchar/wcstof.h"
|
|
#include "src/__support/common.h"
|
|
#include "src/__support/libc_errno.h"
|
|
#include "src/__support/macros/config.h"
|
|
#include "src/__support/str_to_float.h"
|
|
|
|
namespace LIBC_NAMESPACE_DECL {
|
|
|
|
LLVM_LIBC_FUNCTION(float, wcstof,
|
|
(const wchar_t *__restrict str,
|
|
wchar_t **__restrict str_end)) {
|
|
auto result = internal::strtofloatingpoint<float>(str);
|
|
if (result.has_error())
|
|
libc_errno = result.error;
|
|
|
|
if (str_end != nullptr)
|
|
*str_end = const_cast<wchar_t *>(str + result.parsed_len);
|
|
|
|
return result.value;
|
|
}
|
|
|
|
} // namespace LIBC_NAMESPACE_DECL
|