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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,d17f61d1647df47d X-Google-Attributes: gid103376,public From: tmoran@bix.com Subject: Re: converting lower case to upper case Date: 1995/04/04 Message-ID: <3ls54b$hu@news1.delphi.com>#1/1 X-Deja-AN: 100815578 organization: Delphi Internet Services Corporation newsgroups: comp.lang.ada Date: 1995-04-04T00:00:00+00:00 List-Id: Ada 95 has a T_Upper function, but Ada 83 doesn't (though your compiler vendor may provide one). If you need to roll your own: function To_Upper(Item : in Character) return Character is Raise_It:constant array('a' .. 'z') of Character :="ABCDEFGHIJKLMNOPQRSTUVWXYZ"; begin if Item in Raise_It'range then return Raise_It(Item); else return Item; end if; end To_Upper;