[3444] | 1 | /* inputting files to be patched */
|
---|
| 2 |
|
---|
| 3 | /* $Id: inp.h,v 1.7 2003/05/20 14:05:22 eggert Exp $ */
|
---|
| 4 |
|
---|
| 5 | /* Copyright (C) 1986, 1988 Larry Wall
|
---|
| 6 | Copyright (C) 1991, 1992, 1993, 1997, 1998, 1999, 2002, 2003
|
---|
| 7 | Free 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 |
|
---|
| 24 | XTERN LINENUM input_lines; /* how long is input file in lines */
|
---|
| 25 |
|
---|
| 26 | char const *ifetch (LINENUM, bool, size_t *);
|
---|
| 27 | void get_input_file (char const *, char const *);
|
---|
| 28 | void re_input (void);
|
---|
| 29 | void scan_input (char *);
|
---|