diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-09-09 21:42:14 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-09-09 21:42:14 +0000 |
commit | 9c64d2a7ba6feb196099ee8b65bba163191008c0 (patch) | |
tree | c68382219855cc0e74227118398befe77b5934a1 /newlib/libc/stdlib/mbtowc.c | |
parent | b0591c89af3471f90b1762a712d7eb5a857cc568 (diff) | |
download | cygnal-9c64d2a7ba6feb196099ee8b65bba163191008c0.tar.gz cygnal-9c64d2a7ba6feb196099ee8b65bba163191008c0.tar.bz2 cygnal-9c64d2a7ba6feb196099ee8b65bba163191008c0.zip |
2002-09-09 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/sys/_types.h (_mbstate_t): Changed to use
unsigned char internally.
* libc/sys/linux/sys/_types.h: Ditto.
* libc/include/sys/reent.h
* libc/stdlib/mblen.c (mblen): Use function-specific state
value from default reentrancy structure.
* libc/stdlib/mblen_r.c (_mblen_r): If return code from
_mbtowc_r is less than 0, reset state __count value and
return -1.
* libc/stdlib/mbrlen.c (mbrlen): If the input state pointer
is NULL, use the function-specific pointer provided in the
default reentrancy structure.
* libc/stdlib/mbrtowc.c: Add reentrant form of function.
If input state pointer is NULL, use function-specific area
provided in reentrancy structure.
* libc/stdlib/mbsrtowcs.c: Ditto.
* libc/stdlib/wcrtomb.c: Ditto.
* libc/stdlib/wcsrtombs.c: Ditto.
* libc/stdlib/mbstowcs.c: Reformat.
* libc/stdlib/wcstombs.c: Ditto.
* libc/stdlib/mbstowcs_r.c (_mbstowcs_r): If an error occurs,
reset the state's __count value and return -1.
* libc/stdlib/mbtowc.c: Ditto.
* libc/stdlib/mbtowc_r.c (_mbtowc_r): Add restartable functionality.
If number of bytes is used up before completing a valid multibyte
character, return -2 and save the state.
* libc/stdlib/wctomb_r.c (_wctomb_r): Define __state as __count
and change some __count references to __state for clarity.
Diffstat (limited to 'newlib/libc/stdlib/mbtowc.c')
-rw-r--r-- | newlib/libc/stdlib/mbtowc.c | 38 |
1 files changed, 22 insertions, 16 deletions
diff --git a/newlib/libc/stdlib/mbtowc.c b/newlib/libc/stdlib/mbtowc.c index 6da735aeb..e1e725dbf 100644 --- a/newlib/libc/stdlib/mbtowc.c +++ b/newlib/libc/stdlib/mbtowc.c @@ -52,6 +52,7 @@ effects vary with the locale. #ifndef _REENT_ONLY #include <stdlib.h> +#include <wchar.h> int _DEFUN (mbtowc, (pwc, s, n), @@ -60,23 +61,28 @@ _DEFUN (mbtowc, (pwc, s, n), size_t n) { #ifdef MB_CAPABLE - int retval = 0; - _REENT_CHECK_MISC(_REENT); - - retval = _mbtowc_r (_REENT, pwc, s, n, &(_REENT_MBTOWC_STATE(_REENT))); - - if (retval < 0) - return -1; - else - return retval; + int retval = 0; + mbstate_t *ps; + + _REENT_CHECK_MISC(_REENT); + ps = &(_REENT_MBTOWC_STATE(_REENT)); + + retval = _mbtowc_r (_REENT, pwc, s, n, ps); + + if (retval < 0) + { + ps->__count = 0; + return -1; + } + return retval; #else /* not MB_CAPABLE */ - if (s == NULL) - return 0; - if (n == 0) - return -1; - if (pwc) - *pwc = (wchar_t) *s; - return (*s != '\0'); + if (s == NULL) + return 0; + if (n == 0) + return -1; + if (pwc) + *pwc = (wchar_t) *s; + return (*s != '\0'); #endif /* not MB_CAPABLE */ } |