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 static const wchar_t encoding_mask
[] =
30 ~0x7ff, ~0xffff, ~0x1fffff, ~0x3ffffff
33 static const unsigned char encoding_byte
[] =
35 0xc0, 0xe0, 0xf0, 0xf8, 0xfc
38 /* We don't need the state really because we don't have shift states
39 to maintain between calls to this function. */
40 static mbstate_t internal
;
43 __wcsrtombs (dst
, src
, len
, ps
)
50 const wchar_t *run
= *src
;
56 /* The LEN parameter has to be ignored if we don't actually write
64 if (wc
< 0 || wc
> 0x7fffffff)
66 /* This is no correct ISO 10646 character. */
81 /* It's an one byte sequence. */
90 for (step
= 2; step
< 6; ++step
)
91 if ((wc
& encoding_mask
[step
- 2]) == 0)
94 if (written
+ step
>= len
)
102 dst
[0] = encoding_byte
[cnt
- 2];
107 dst
[cnt
] = 0x80 | (wc
& 0x3f);
120 /* Store position of first unprocessed word. */
125 weak_alias (__wcsrtombs
, wcsrtombs
)