From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6f641d1e7358d78 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 1995-01-27 17:56:35 PST Path: nntp.gmd.de!newsserver.jvnc.net!howland.reston.ans.net!news1.digex.net!ois.com!ois.com!not-for-mail From: beckwb@ois.com (R. William Beckwith) Newsgroups: comp.lang.ada Subject: Re: Ada + Multi-Byte/Wide Chars = Modern Language? Date: 27 Jan 1995 20:56:35 -0500 Organization: Objective Interface Systems, Inc. Message-ID: <3gc88j$7i1@gamma.ois.com> References: <1995Jan23.183235.19361@midway.uchicago.edu> <3g3kde$9p4@gnat.cs.nyu.edu> <3g866d$6hb@cnj.digex.net> NNTP-Posting-Host: gamma.ois.com X-Newsreader: TIN [version 1.2 PL2] Date: 1995-01-27T20:56:35-05:00 List-Id: Gentle (gentle@cnj.digex.net) wrote: : This may be a silly question, but what exactly is a "wide character"? A two-byte character type built into the Ada95 language. LRM, Standard pkg: -- The declaration of type Wide_Character is based on the standard -- ISO 10646 BMP character set. The first 256 positions have the -- same contents as type Character. See 3.5.2. type Wide_Character is (nul, soh ... FFFE, FFFF); ... type Wide_String is array(Positive range <>) of Wide_Character; pragma Pack(Wide_String); ... Bill