1 /* Copyright (C) 1996, 1997, 1998 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. */
28 #include "stringtrans.h"
31 /* Global variable. */
32 enum encoding_method encoding_method
= ENC_UCS4
;
35 void *xmalloc (size_t __n
);
36 void *xrealloc (void *__p
, size_t __n
);
43 if (bufact + (encoding_method == ENC_UCS4 ? 4 : 1) >= bufmax) \
46 buf = xrealloc (buf, bufmax); \
49 if (encode_char (ch, &cp) < 0) \
60 translate_string (char *str
, struct charset_t
*charset
)
66 buf
= (char *) xmalloc (bufmax
);
68 while (str
[0] != '\0')
80 while (tp
[0] != '\0' && tp
[0] != '>')
95 value
= charset_find_value (&charset
->char_table
, str
+ 1,
97 if ((wchar_t) value
== ILLEGAL_CHAR_VALUE
)
103 /* Encode string using current method. */
116 encode_char (unsigned int value
, char **cpp
)
118 switch (encoding_method
)
123 *(*cpp
)++ = (char) value
;
127 #if __BYTE_ORDER == __BIG_ENDIAN
128 *(*cpp
)++ = (char) (value
>> 24);
129 *(*cpp
)++ = (char) ((value
>> 16) & 0xff);
130 *(*cpp
)++ = (char) ((value
>> 8) & 0xff);
131 *(*cpp
)++ = (char) (value
& 0xff);
133 *(*cpp
)++ = (char) (value
& 0xff);
134 *(*cpp
)++ = (char) ((value
>>= 8) & 0xff);
135 *(*cpp
)++ = (char) ((value
>>= 8) & 0xff);
136 *(*cpp
)++ = (char) ((value
>>= 8) & 0xff);