From 37da2899f40661e3e9631e497da8dc59b971cbd0 Mon Sep 17 00:00:00 2001 From: "Charles.Forsyth" Date: Fri, 22 Dec 2006 17:07:39 +0000 Subject: 20060303a --- appl/lib/convcs/utf8_stob.b | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 appl/lib/convcs/utf8_stob.b (limited to 'appl/lib/convcs/utf8_stob.b') diff --git a/appl/lib/convcs/utf8_stob.b b/appl/lib/convcs/utf8_stob.b new file mode 100644 index 00000000..a1be8bb7 --- /dev/null +++ b/appl/lib/convcs/utf8_stob.b @@ -0,0 +1,17 @@ +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); +} -- cgit v1.2.3