diff options
author | das <das@FreeBSD.org> | 2009-03-04 06:01:27 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2009-03-04 06:01:27 +0000 |
commit | e609fbb43b577bbe85d61ed52b9fcec80adeb290 (patch) | |
tree | 32647ae6c533dd5a4b22e10eef9fcedf0e392e62 /include | |
parent | 2c8ef091d95b34057ccc17313ea6912f76e633ee (diff) | |
download | FreeBSD-src-e609fbb43b577bbe85d61ed52b9fcec80adeb290.zip FreeBSD-src-e609fbb43b577bbe85d61ed52b9fcec80adeb290.tar.gz |
Add wcpcpy(3) and wcpncpy(3).
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 f165a5b..6165ed1 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); |