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,13fd7bcbabaa9519 X-Google-Attributes: gid103376,public From: Mike Ibarra Subject: Re: End of Line Question Date: 1996/07/12 Message-ID: <4s5hdb$hmb@news3.digex.net>#1/1 X-Deja-AN: 167980147 references: <4s4tn7$po6@masala.cc.uh.edu> to: cosc19z5@Bayou.UH.EDU content-type: text/plain; charset=us-ascii organization: Express Access Online Communications, USA x-url: news:4s4tn7$po6@masala.cc.uh.edu mime-version: 1.0 newsgroups: comp.lang.ada x-mailer: Mozilla 1.12 (X11; I; SunOS 4.1.3 sun4c) Date: 1996-07-12T00:00:00+00:00 List-Id: You could test for this a couple of different ways. In Ada83, package ASCII contains identifiers for all ASCII control characters. So you could test: IF ch = ASCII.cr THEN ... Or you could just test for end of line: WHILE ( not End_Of_Line ) LOOP... Hope this helps -- Michael Ibarra