X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=opt%2Fbasecodecs%2F_PDCLIB_utf8.c;h=6348c79ed852a251cd714ebb05ea1db6077207ce;hp=7966d882afb520a9435c816c1c66f5db0b6ce70e;hb=276f7e69f80ac53bfb5da5cc24072dd393485106;hpb=e27a6872a6331dd662c13a537c9886c25f70e563 diff --git a/opt/basecodecs/_PDCLIB_utf8.c b/opt/basecodecs/_PDCLIB_utf8.c index 7966d88..6348c79 100644 --- a/opt/basecodecs/_PDCLIB_utf8.c +++ b/opt/basecodecs/_PDCLIB_utf8.c @@ -73,7 +73,7 @@ static bool utf8toc32( char32_t c32; switch(state) { case DecStart: - // 1 byte + // 1 byte if(c <= 0x7F) { OUT32(c); } else if(c <= 0xDF) { @@ -156,7 +156,7 @@ static bool utf8toc32( } (*p_inbuf)++; - (*p_insz)--; + (*p_insz)--; } END_CONVERSION; } @@ -178,7 +178,7 @@ static bool c32toutf8( { START_CONVERSION while(*p_outsz) { - unsigned char outc; + unsigned char outc = 0; switch(state) { case Enc3R: outc = 0x80 | ((accum >> 12) & 0x3F); @@ -225,14 +225,14 @@ static bool c32toutf8( if(p_outbuf) { **p_outbuf = outc; - (*p_outbuf)++; + (*p_outbuf)++; } - (*p_outsz)--; + (*p_outsz)--; } END_CONVERSION; } -const struct _PDCLIB_charcodec _PDCLIB_utf8_codec = { +const struct _PDCLIB_charcodec_t _PDCLIB_utf8_codec = { .__mbsinit = utf8_mbsinit, .__mbstoc32s = utf8toc32, .__c32stombs = c32toutf8, @@ -249,7 +249,7 @@ int main( void ) #ifndef REGTEST // Valid conversion & back - static const char* input = "abcde" "\xDF\xBF" "\xEF\xBF\xBF" + static const char* input = "abcde" "\xDF\xBF" "\xEF\xBF\xBF" "\xF4\x8F\xBF\xBF"; char32_t c32out[8];