EN JA
WCSTOD(3)
WCSTOD(3) FreeBSD Library Functions Manual WCSTOD(3)

名称

wcstof, wcstod, wcstold文字列を float, double または long double に変換する

ライブラリ

Standard C Library (libc, -lc)

書式

#include < wchar.h>

float
wcstof( const wchar_t * restrict nptr, wchar_t ** restrict endptr);

long double
wcstold( const wchar_t * restrict nptr, wchar_t ** restrict endptr);

double
wcstod( const wchar_t * restrict nptr, wchar_t ** restrict endptr);

解説

wcstof(), wcstod(), wcstold() 関数は、 strtof(), strtod(), strtold() 関数のワイド文字版です。詳細については strtod(3) を参照してください。

関連項目

strtod(3), wcstol(3)

規格

wcstof(), wcstod(), wcstold() 関数は、 ISO/IEC 9899:1999 (“ISO C99”) に適合しています。
February 22, 2003 FreeBSD