unicode morphisms: remove LE- suffix from UTF32 since we are using native.UInt32

This commit is contained in:
Michael Sippel 2025-03-20 17:26:18 +01:00
parent 1d10b1bf61
commit 4b824cbb7c
Signed by: senvas
GPG key ID: F96CF119C34B64A6

View file

@ -34,7 +34,7 @@ morph_string_as_utf8_to_ascii ()
morph_string_as_ascii_to_utf32 () morph_string_as_ascii_to_utf32 ()
<Seq ~ <ValueTerminated 0> Char~Ascii~native.UInt8> <Seq ~ <ValueTerminated 0> Char~Ascii~native.UInt8>
--> <Seq Char~Unicode> --> <Seq Char~Unicode>
~ UTF-32LE ~ UTF-32
~ <Seq~<ValueTerminated 0> native.UInt32> ~ <Seq~<ValueTerminated 0> native.UInt32>
``` ```
while( *src ) { *dst++ = *src++; } while( *src ) { *dst++ = *src++; }
@ -49,7 +49,7 @@ morph_string_as_utf8_to_utf32 ()
~ <Seq~<ValueTerminated 0> native.UInt8> ~ <Seq~<ValueTerminated 0> native.UInt8>
--> <Seq Char~Unicode> --> <Seq Char~Unicode>
~ UTF-32LE ~ UTF-32
~ <Seq~<ValueTerminated 0> native.UInt32> ~ <Seq~<ValueTerminated 0> native.UInt32>
``` ```