1/* inputting files to be patched */
2
3/* $Id: inp.h,v 1.1.1.3 2003/05/08 18:38:02 rbraun Exp $ */
4
5/* Copyright (C) 1986, 1988 Larry Wall
6   Copyright (C) 1991, 1992, 1993, 1997, 1998, 1999, 2002 Free
7   Software Foundation, Inc.
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; either version 2, or (at your option)
12   any later version.
13
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19   You should have received a copy of the GNU General Public License
20   along with this program; see the file COPYING.
21   If not, write to the Free Software Foundation,
22   59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
23
24XTERN LINENUM input_lines;		/* how long is input file in lines */
25
26char const *ifetch (LINENUM, int, size_t *);
27void get_input_file (char const *, char const *);
28void re_input (void);
29void scan_input (char *);
30