diff options
author | tjr <tjr@FreeBSD.org> | 2003-03-13 06:29:53 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2003-03-13 06:29:53 +0000 |
commit | dc2fc01c024e4580e7f2bca3873518c3c480d23c (patch) | |
tree | af686412c6364be7f5f8a5b24bd486ad89d25650 /include | |
parent | 91e561ec0380182d833b35eb68beb4bd88a55889 (diff) | |
download | FreeBSD-src-dc2fc01c024e4580e7f2bca3873518c3c480d23c.zip FreeBSD-src-dc2fc01c024e4580e7f2bca3873518c3c480d23c.tar.gz |
MFp4: Implementations of the wcstof() and wcstold() functions.
Diffstat (limited to 'include')
-rw-r--r-- | include/wchar.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/wchar.h b/include/wchar.h index 3ed992c..4900c20 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -174,6 +174,9 @@ int vfwscanf(struct __sFILE * __restrict, const wchar_t * __restrict, int vswscanf(const wchar_t * __restrict, const wchar_t * __restrict, __va_list); int vwscanf(const wchar_t * __restrict, __va_list); +float wcstof(const wchar_t * __restrict, wchar_t ** __restrict); +long double + wcstold(const wchar_t * __restrict, wchar_t ** __restrict); #ifdef __LONG_LONG_SUPPORTED /* LONGLONG */ long long |