summaryrefslogtreecommitdiff
path: root/include/wchar.h
diff options
context:
space:
mode:
authorTim J. Robbins <tjr@FreeBSD.org>2002-09-15 08:38:51 +0000
committerTim J. Robbins <tjr@FreeBSD.org>2002-09-15 08:38:51 +0000
commit03b716c4bd43c994c7491be415e7fced799a7a2a (patch)
tree710c6f1ab8185c53ced92b892d2b54dd1ce46ac1 /include/wchar.h
parentab85003bf54049316f11f3c6a3dd3e3bf11b46ff (diff)
downloadsrc-test2-03b716c4bd43c994c7491be415e7fced799a7a2a.tar.gz
src-test2-03b716c4bd43c994c7491be415e7fced799a7a2a.zip
Add wcstod() as a wrapper around strtod(). It does not handle any characters
that strtod() does not (alternate digit characters, etc. are not handled).
Notes
Notes: svn path=/head/; revision=103339
Diffstat (limited to 'include/wchar.h')
-rw-r--r--include/wchar.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/wchar.h b/include/wchar.h
index f4ce405d7e6e..4877d3b93333 100644
--- a/include/wchar.h
+++ b/include/wchar.h
@@ -144,6 +144,7 @@ size_t wcsrtombs(char * __restrict, const wchar_t ** __restrict, size_t,
size_t wcsspn(const wchar_t *, const wchar_t *);
wchar_t *wcsstr(const wchar_t * __restrict, const wchar_t * __restrict);
int wctob(wint_t);
+double wcstod(const wchar_t * __restrict, wchar_t ** __restrict);
wchar_t *wcstok(wchar_t * __restrict, const wchar_t * __restrict,
wchar_t ** __restrict);
long wcstol(const wchar_t * __restrict, wchar_t ** __restrict, int);