| /* Wide char wrapper for strtof |
| * 25 Aug 2006 Initial version. |
| * Contributor: Danny Smith <dannysmith@users.sourceforege.net> |
| /* This routine has been placed in the public domain.*/ |
| #define WIN32_LEAN_AND_MEAN |
| #include "mb_wc_common.h" |
| float wcstof (const wchar_t * __restrict__ wcs, wchar_t ** __restrict__ wcse) |
| const unsigned int cp = ___lc_codepage_func(); |
| /* Allocate enough room for (possibly) mb chars */ |
| cs = (char *) malloc ((wcslen(wcs)+1) * MB_CUR_MAX); |
| if (cp == 0) /* C locale */ |
| for (i = 0; (wcs[i] != 0) && wcs[i] <= 255; i++) |
| /* loop through till we hit null or invalid character */ |
| for (i = 0; (wcs[i] != 0) && (nbytes != 0); i++) |
| nbytes = WideCharToMultiByte(cp, WC_COMPOSITECHECK | WC_SEPCHARS, |
| wcs + i, 1, cs + mb_len, MB_CUR_MAX, |
| /* Make sure temp mbstring cs has 0 at cse. */ |
| i = _mbslen ((unsigned char*) cs); /* Number of chars, not bytes */ |
| *wcse = (wchar_t *) wcs + i; |