ref: 44ce0097b612a1fefd754065bdf8d9d2e5ef60c8
dir: /appl/lib/convcs/utf8_stob.b/
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); }