1 /* Copyright (C) 1996 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1996.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If
17 not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
28 /* We don't need the state really because we don't have shift states
29 to maintain between calls to this function. */
30 static mbstate_t internal
;
33 __mbsrtowcs (dst
, src
, len
, ps
)
40 const char *run
= *src
;
46 /* The LEN parameter has to be ignored if we don't actually write
55 unsigned char byte
= *run
++;
57 /* We expect a start of a new multibyte character. */
60 /* One byte sequence. */
64 else if ((byte
& 0xe0) == 0xc0)
69 else if ((byte
& 0xf0) == 0xe0)
71 /* We expect three bytes. */
75 else if ((byte
& 0xf8) == 0xf0)
77 /* We expect four bytes. */
81 else if ((byte
& 0xfc) == 0xf8)
83 /* We expect five bytes. */
87 else if ((byte
& 0xfe) == 0xfc)
89 /* We expect six bytes. */
95 /* This is an illegal encoding. */
100 /* Read the possible remaining bytes. */
105 if ((byte
& 0xc0) != 0x80)
107 /* This is an illegal encoding. */
113 value
|= byte
& 0x3f;
116 /* Store value is required. */
120 /* The whole sequence is read. Check whether end of string is
124 /* Found the end of the string. */
129 /* Increment counter of produced words. */
133 /* Store address of next byte to process. */
138 weak_alias (__mbsrtowcs
, mbsrtowcs
)