Update.
[glibc.git] / wcsmbs / wcsnrtombs.c
blobddd4e950579f4d303d9e4aa4943a09baaf40cfb1
1 /* Copyright (C) 1996, 1997 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 not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 #include <errno.h>
21 #include <wchar.h>
23 #ifndef EILSEQ
24 #define EILSEQ EINVAL
25 #endif
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;
42 /* This is a non-standard function but it is very useful in the
43 implementation of stdio because we have to deal with unterminated
44 buffers. At most NWC wide character will be converted. */
45 size_t
46 __wcsnrtombs (dst, src, nwc, len, ps)
47 char *dst;
48 const wchar_t **src;
49 size_t nwc;
50 size_t len;
51 mbstate_t *ps;
53 size_t written = 0;
54 const wchar_t *run = *src;
56 if (ps == NULL)
57 ps = &internal;
59 if (dst == NULL)
60 /* The LEN parameter has to be ignored if we don't actually write
61 anything. */
62 len = ~0;
64 while (written < len && nwc-- > 0)
66 wchar_t wc = *run++;
68 if (wc < 0 || wc > 0x7fffffff)
70 /* This is no correct ISO 10646 character. */
71 __set_errno (EILSEQ);
72 return (size_t) -1;
75 if (wc == L'\0')
77 /* Found the end. */
78 if (dst != NULL)
79 *dst = '\0';
80 *src = NULL;
81 return written;
83 else if (wc < 0x80)
85 /* It's an one byte sequence. */
86 if (dst != NULL)
87 *dst++ = (char) wc;
88 ++written;
90 else
92 size_t step;
94 for (step = 2; step < 6; ++step)
95 if ((wc & encoding_mask[step - 2]) == 0)
96 break;
98 if (written + step >= len)
99 /* Too long. */
100 break;
102 if (dst != NULL)
104 size_t cnt = step;
106 dst[0] = encoding_byte[cnt - 2];
108 --cnt;
111 dst[cnt] = 0x80 | (wc & 0x3f);
112 wc >>= 6;
114 while (--cnt > 0);
115 dst[0] |= wc;
117 dst += step;
120 written += step;
124 /* Store position of first unprocessed word. */
125 *src = run;
127 return written;
129 weak_alias (__wcsnrtombs, wcsnrtombs)