28 lines
723 B
C
28 lines
723 B
C
/* _WStold function */
|
|
#include <wchar.h>
|
|
#include "xmath.h"
|
|
#include "xxwctype.h"
|
|
#include "xxlftype.h"
|
|
_C_STD_BEGIN
|
|
#if !defined(MRTDLL)
|
|
_C_LIB_DECL
|
|
#endif /* defined(MRTDLL) */
|
|
|
|
_CRTIMP2_PURE FTYPE __CLRCALL_PURE_OR_CDECL _WStoldx(const CTYPE *s, CTYPE **endptr, long pten,
|
|
int *perr)
|
|
#include "xxstod.h"
|
|
|
|
_CRTIMP2_PURE FTYPE __CLRCALL_PURE_OR_CDECL _WStold(const CTYPE *s, CTYPE **endptr, long pten)
|
|
{ /* convert string, discard error code */
|
|
return (_WStoldx(s, endptr, pten, 0));
|
|
}
|
|
#if !defined(MRTDLL)
|
|
_END_C_LIB_DECL
|
|
#endif /* !defined(MRTDLL) */
|
|
_C_STD_END
|
|
|
|
/*
|
|
* Copyright (c) 1992-2012 by P.J. Plauger. ALL RIGHTS RESERVED.
|
|
* Consult your license regarding permissions and restrictions.
|
|
V6.00:0009 */
|