shithub: mc

ref: ff88594df5c5df6fb8f227ab8e5df3529ba6e72f
dir: /test/encodechar.myr/

View raw version
/* checks that we can decode and encode characters from a utf8 string. */
use std

const main = {args : byte[:][:]
	chartypes()
}

const chartypes = {
	var s
	var foo
	var buf : byte[32]

	s = "1世界äa\n"
	for c : std.bychar(s)
		foo = c
		if std.encode(buf[:std.charlen(c)], c) == 0
			std.write(1, "couldn't encode\n")
		;;
		std.write(1, buf[:std.charlen(c)])
	;;
}