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,807c81be80f60569 X-Google-Attributes: gid103376,public From: nabbasi@pacble.net.NOSPAM Subject: Re: put a character back to the input stream Date: 1999/10/23 Message-ID: <7ut91r$nih@drn.newsguy.com>#1/1 X-Deja-AN: 539767499 References: <3811B324.D0CC49A3@hotmail.com> Organization: home Newsgroups: comp.lang.ada Date: 1999-10-23T00:00:00+00:00 List-Id: In article <3811B324.D0CC49A3@hotmail.com>, Frank says... > >is there any function in ada which can put a read character back to the >input stream like cin.putback(c) in c++. it happens when i have a input >which i read a character each time >"name + 342" package Interfaces.C_Streams has function : function ungetc (c : int; stream : FILEs) return int; (and all the other standard C stream functions.) \nasser