From 9ea2c1941c43075568374b2acf0e6c1ad8392b14 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Mon, 25 Mar 2002 17:07:14 +0000 Subject: (ucs4le_internal_loop_single): Handle little endian. --- iconv/gconv_simple.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'iconv/gconv_simple.c') diff --git a/iconv/gconv_simple.c b/iconv/gconv_simple.c index c2c1358827..b4dcf93c32 100644 --- a/iconv/gconv_simple.c +++ b/iconv/gconv_simple.c @@ -1,5 +1,5 @@ /* Simple transformations functions. - Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. @@ -305,7 +305,7 @@ ucs4_internal_loop_unaligned (struct __gconv_step *step, *inptrp = inptr; *outptrp = outptr; - return __GCONV_ILLEGAL_INPUT; + return __GCONV_ILLEGAL_INPUT; } # if __BYTE_ORDER == __LITTLE_ENDIAN @@ -654,7 +654,7 @@ ucs4le_internal_loop_unaligned (struct __gconv_step *step, *inptrp = inptr; *outptrp = outptr; - return __GCONV_ILLEGAL_INPUT; + return __GCONV_ILLEGAL_INPUT; } # if __BYTE_ORDER == __BIG_ENDIAN @@ -729,7 +729,7 @@ ucs4le_internal_loop_single (struct __gconv_step *step, (*outptrp)[1] = state->__value.__wchb[2]; (*outptrp)[2] = state->__value.__wchb[1]; (*outptrp)[3] = state->__value.__wchb[0]; -#elif __BYTE_ORDER == __BIG_ENDIAN +#else (*outptrp)[0] = state->__value.__wchb[0]; (*outptrp)[1] = state->__value.__wchb[1]; (*outptrp)[2] = state->__value.__wchb[2]; @@ -915,11 +915,11 @@ ucs4le_internal_loop_single (struct __gconv_step *step, } \ else \ { \ - if (ch >= 0xc2 && ch < 0xe0) \ + if (ch >= 0xc2 && ch < 0xe0) \ { \ - /* We expect two bytes. The first byte cannot be 0xc0 or 0xc1, \ - otherwise the wide character could have been represented \ - using a single byte. */ \ + /* We expect two bytes. The first byte cannot be 0xc0 or 0xc1, \ + otherwise the wide character could have been represented \ + using a single byte. */ \ cnt = 2; \ ch &= 0x1f; \ } \ @@ -1222,7 +1222,7 @@ ucs4le_internal_loop_single (struct __gconv_step *step, ++*irreversible; \ continue; \ } \ - else \ + else \ { \ *((uint16_t *) outptr)++ = val; \ inptr += 4; \ @@ -1312,7 +1312,7 @@ ucs4le_internal_loop_single (struct __gconv_step *step, ++*irreversible; \ continue; \ } \ - else \ + else \ { \ *((uint16_t *) outptr)++ = bswap_16 (val); \ inptr += 4; \ -- cgit v1.2.3