Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / cpp.ansi / input.h
1 /*
2  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3  * See the copyright notice in the ACK home directory, in the file "Copyright".
4  */
5 /* $Id: input.h,v 1.2 1994/06/24 11:37:35 ceriel Exp $ */
6 #define INP_PUSHBACK 3
7 #include "inputtype.h"
8 #include <inp_pkg.spec>
9
10 /*      Note: The following macro only garuantees one PushBack.
11 */
12 #define UnGetChar()     ((LexSave != EOI) ? ChPushBack(LexSave) : 0)
13
14 extern  int LexSave;    /* last character read by GetChar               */
15 extern  int GetChar();  /* character input, with trigraph parsing       */