From ca6f46aff1fc89c3d06ff9e85ab8c7871a695924 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 1 Mar 2024 15:49:58 -0500 Subject: iconv: add euro symbol to GBK as single byte 0x80 this is how it's defined in the cp936 document referenced by the IANA charset registry as defining GBK, and of the mappings defined there, was the only one missing. it is not accepted for GB18030, as GB18030 is a UTF and has its own unique mapping for the euro symbol. --- src/locale/iconv.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/locale/iconv.c b/src/locale/iconv.c index 175def1c..0b2d0016 100644 --- a/src/locale/iconv.c +++ b/src/locale/iconv.c @@ -403,6 +403,10 @@ size_t iconv(iconv_t cd, char **restrict in, size_t *restrict inb, char **restri if (c < 128) break; if (c < 0xa1) goto ilseq; case GBK: + if (c == 128) { + c = 0x20ac; + break; + } case GB18030: if (c < 128) break; c -= 0x81; -- cgit v1.2.1