diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-10-23 18:07:13 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-10-23 18:07:13 +0000 |
commit | 4340b63bc1e20c0311f7a723b8c3ee3b1760a60a (patch) | |
tree | 850fb7887a946302c4af37593d9732788dcc5038 /newlib/libc/include/wchar.h | |
parent | 34dd9dbc047a6aa8547d1c6c2f04154d272ee76f (diff) | |
download | cygnal-4340b63bc1e20c0311f7a723b8c3ee3b1760a60a.tar.gz cygnal-4340b63bc1e20c0311f7a723b8c3ee3b1760a60a.tar.bz2 cygnal-4340b63bc1e20c0311f7a723b8c3ee3b1760a60a.zip |
2003-10-23 Artem B. Bityuckiy <mail_lists@mail.ru>
* libc/string/wcsnlen.c: New file.
* libc/include/wchar.h: Add wcsnlen prototype.
* libc/string/Makefile.am: Add wcsnlen support.
* libc/string/Makefile.in: Regenerated.
* libc/string/wcstrings.tex: Add wcsnlen documentation.
Diffstat (limited to 'newlib/libc/include/wchar.h')
-rw-r--r-- | newlib/libc/include/wchar.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/newlib/libc/include/wchar.h b/newlib/libc/include/wchar.h index 8d3e4d9ee..9e8953739 100644 --- a/newlib/libc/include/wchar.h +++ b/newlib/libc/include/wchar.h @@ -58,6 +58,7 @@ size_t _EXFUN(wcslen, (const wchar_t *)); wchar_t *_EXFUN(wcsncat, (wchar_t * , const wchar_t * , size_t)); int _EXFUN(wcsncmp, (const wchar_t *, const wchar_t *, size_t)); wchar_t *_EXFUN(wcsncpy, (wchar_t * , const wchar_t * , size_t)); +size_t _EXFUN(wcsnlen, (const wchar_t *, size_t)); wchar_t *_EXFUN(wcspbrk, (const wchar_t *, const wchar_t *)); wchar_t *_EXFUN(wcsrchr, (const wchar_t *, wchar_t)); size_t _EXFUN(wcsspn, (const wchar_t *, const wchar_t *)); |