Don't bother with endianity
I hope this is correct... works for little endian (which is the odd one here).
This commit is contained in:
parent
d9b20f7586
commit
5ca6b7fb42
8
termo.c
8
termo.c
|
@ -322,13 +322,9 @@ termo_init (termo_t *tk, const char *term, const char *encoding)
|
||||||
if (!encoding)
|
if (!encoding)
|
||||||
encoding = nl_langinfo (CODESET);
|
encoding = nl_langinfo (CODESET);
|
||||||
|
|
||||||
static const uint16_t endianity = 0x0102;
|
if ((tk->to_utf32_conv = iconv_open ("UTF-32", encoding)) == (iconv_t) -1)
|
||||||
const char *utf32 = (*(uint8_t *) &endianity == 0x01)
|
|
||||||
? "UTF-32BE" : "UTF-32LE";
|
|
||||||
|
|
||||||
if ((tk->to_utf32_conv = iconv_open (utf32, encoding)) == (iconv_t) -1)
|
|
||||||
return 0;
|
return 0;
|
||||||
if ((tk->from_utf32_conv = iconv_open (encoding, utf32)) == (iconv_t) -1)
|
if ((tk->from_utf32_conv = iconv_open (encoding, "UTF-32")) == (iconv_t) -1)
|
||||||
goto abort_free_to_utf32;
|
goto abort_free_to_utf32;
|
||||||
|
|
||||||
tk->buffer = malloc (tk->buffsize);
|
tk->buffer = malloc (tk->buffsize);
|
||||||
|
|
Loading…
Reference in New Issue