Initial revision
This commit is contained in:
22
lang/basic/src/yylexp.c
Normal file
22
lang/basic/src/yylexp.c
Normal file
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
||||
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
||||
*/
|
||||
|
||||
int toknum;
|
||||
|
||||
yylexp()
|
||||
{
|
||||
/* als toknum != 0 dan bevat toknum een door LLmessage back-ge-pushed token */
|
||||
|
||||
int t;
|
||||
|
||||
if ( toknum == 0 )
|
||||
return(yylex());
|
||||
else {
|
||||
t = toknum;
|
||||
toknum = 0;
|
||||
return(t);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user