diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-12-05 01:36:32 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-12-05 01:36:32 +0000 |
commit | 3aca088831db311523415d156bbaafee3d9ec6f2 (patch) | |
tree | 73b0ef2a76668d355165005938e88abc7195e855 /newlib/libc/include | |
parent | 0444b90fcd4ea7267d955722b0c1ef6f420cca29 (diff) | |
download | cygnal-3aca088831db311523415d156bbaafee3d9ec6f2.tar.gz cygnal-3aca088831db311523415d156bbaafee3d9ec6f2.tar.bz2 cygnal-3aca088831db311523415d156bbaafee3d9ec6f2.zip |
2003-12-04 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/wchar.h: Add prototypes for _mbrtowc_r,
_wcrtomb_r, and _wcsrtombs_r.
Diffstat (limited to 'newlib/libc/include')
-rw-r--r-- | newlib/libc/include/wchar.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/newlib/libc/include/wchar.h b/newlib/libc/include/wchar.h index 9e8953739..d532b9cfd 100644 --- a/newlib/libc/include/wchar.h +++ b/newlib/libc/include/wchar.h @@ -42,10 +42,15 @@ wint_t _EXFUN(btowc, (int)); int _EXFUN(wctob, (wint_t)); size_t _EXFUN(mbrlen, (const char * , size_t, mbstate_t *)); size_t _EXFUN(mbrtowc, (wchar_t * , const char * , size_t, mbstate_t *)); +size_t _EXFUN(_mbrtowc_r, (struct _reent *, wchar_t * , const char * , + size_t, mbstate_t *)); int _EXFUN(mbsinit, (const mbstate_t *)); size_t _EXFUN(mbsrtowcs, (wchar_t * , const char ** , size_t, mbstate_t *)); size_t _EXFUN(wcrtomb, (char * , wchar_t, mbstate_t *)); +size_t _EXFUN(_wcrtomb_r, (struct _reent *, char * , wchar_t, mbstate_t *)); size_t _EXFUN(wcsrtombs, (char * , const wchar_t ** , size_t, mbstate_t *)); +size_t _EXFUN(_wcsrtombs_r, (struct _reent *, char * , const wchar_t ** , + size_t, mbstate_t *)); wchar_t *_EXFUN(wcscat, (wchar_t * , const wchar_t *)); wchar_t *_EXFUN(wcschr, (const wchar_t *, wchar_t)); int _EXFUN(wcscmp, (const wchar_t *, const wchar_t *)); |