ack/lang/m2/comp/input.c

37 lines
688 B
C
Raw Normal View History

/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*
* Author: Ceriel J.H. Jacobs
*/
1986-03-26 15:11:02 +00:00
/* I N S T A N T I A T I O N O F I N P U T P A C K A G E */
1994-06-24 14:02:31 +00:00
/* $Id$ */
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "parameters.h"
#include "f_info.h"
1986-03-20 14:52:03 +00:00
struct f_info file_info;
#include "input.h"
#include <inp_pkg.body>
1986-06-06 02:22:09 +00:00
1986-10-06 20:36:30 +00:00
2017-08-06 09:58:36 +00:00
int AtEoIF(void)
1986-06-06 02:22:09 +00:00
{
/* Make the unstacking of input streams noticable to the
lexical analyzer
*/
1993-01-18 16:14:43 +00:00
if (WorkingDir[0] != '\0') free(WorkingDir);
1986-06-06 02:22:09 +00:00
return 1;
}
2017-08-06 09:58:36 +00:00
int AtEoIT(void)
1986-06-06 02:22:09 +00:00
{
/* Make the end of the text noticable
*/
return 1;
}