diff options
author | David Schultz <das@FreeBSD.org> | 2009-03-04 06:01:27 +0000 |
---|---|---|
committer | David Schultz <das@FreeBSD.org> | 2009-03-04 06:01:27 +0000 |
commit | 09efd0ec6a6bd656dd613ee7110f3ab4e118fdd4 (patch) | |
tree | 32647ae6c533dd5a4b22e10eef9fcedf0e392e62 /include | |
parent | dc4b1d1662e345b1378a96e2e06e505eeaffeeb8 (diff) | |
download | src-09efd0ec6a6bd656dd613ee7110f3ab4e118fdd4.tar.gz src-09efd0ec6a6bd656dd613ee7110f3ab4e118fdd4.zip |
Notes
Diffstat (limited to 'include')
-rw-r--r-- | include/wchar.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wchar.h b/include/wchar.h index f165a5b4baff..6165ed1cca1a 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -213,6 +213,8 @@ int wcwidth(wchar_t); #if __POSIX_VISIBLE >= 200809 || __BSD_VISIBLE size_t mbsnrtowcs(wchar_t * __restrict, const char ** __restrict, size_t, size_t, mbstate_t * __restrict); +wchar_t *wcpcpy(wchar_t __restrict *, const wchar_t * __restrict); +wchar_t *wcpncpy(wchar_t __restrict *, const wchar_t * __restrict, size_t); wchar_t *wcsdup(const wchar_t *) __malloc_like; int wcscasecmp(const wchar_t *, const wchar_t *); int wcsncasecmp(const wchar_t *, const wchar_t *, size_t n); |