code: 9ferno

ref: 410c1337e07a9f1d521360a160903fe32b4e0d4a
dir: /appl/lib/convcs/utf8_stob.b/

View raw version
implement Stob;

include "sys.m";
include "convcs.m";

sys : Sys;

init(nil : string) : string
{
	sys = load Sys Sys->PATH;
	return nil;
}

stob(nil : Convcs->State, str : string) : (Convcs->State, array of byte)
{
	return (nil, array of byte str);
}