File indexing completed on 2026-05-03 08:14:04
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 #ifndef _LIBCPP___SUPPORT_XLOCALE_STRTONUM_FALLBACK_H
0016 #define _LIBCPP___SUPPORT_XLOCALE_STRTONUM_FALLBACK_H
0017
0018 #include <__config>
0019 #include <stdlib.h>
0020
0021 #if _LIBCPP_HAS_WIDE_CHARACTERS
0022 # include <wchar.h>
0023 #endif
0024
0025 inline _LIBCPP_HIDE_FROM_ABI float strtof_l(const char* __nptr, char** __endptr, locale_t) {
0026 return ::strtof(__nptr, __endptr);
0027 }
0028
0029 inline _LIBCPP_HIDE_FROM_ABI double strtod_l(const char* __nptr, char** __endptr, locale_t) {
0030 return ::strtod(__nptr, __endptr);
0031 }
0032
0033 inline _LIBCPP_HIDE_FROM_ABI long double strtold_l(const char* __nptr, char** __endptr, locale_t) {
0034 return ::strtold(__nptr, __endptr);
0035 }
0036
0037 inline _LIBCPP_HIDE_FROM_ABI long long strtoll_l(const char* __nptr, char** __endptr, int __base, locale_t) {
0038 return ::strtoll(__nptr, __endptr, __base);
0039 }
0040
0041 inline _LIBCPP_HIDE_FROM_ABI unsigned long long strtoull_l(const char* __nptr, char** __endptr, int __base, locale_t) {
0042 return ::strtoull(__nptr, __endptr, __base);
0043 }
0044
0045 #endif