diff options
author | Andreas Gruenbacher <agruen@suse.de> | 2009-03-12 15:13:11 +0100 |
---|---|---|
committer | Andreas Gruenbacher <agruen@suse.de> | 2009-03-12 15:13:11 +0100 |
commit | bcce1233902dc7a94623b3a90cd7920c44f22474 (patch) | |
tree | 35098589ae46a13ab212e74fc6b0b710a44bbcb3 /inp.h | |
parent | 068f401ee314e2274b58adbc1256286ae7a56f9f (diff) | |
download | patch-2.2.tar.gz |
Import of patch-2.2.tar.gzv2.2
Diffstat (limited to 'inp.h')
-rw-r--r-- | inp.h | 22 |
1 files changed, 7 insertions, 15 deletions
@@ -1,18 +1,10 @@ -/* $Header: inp.h,v 2.0 86/09/17 15:37:25 lwall Exp $ - * - * $Log: inp.h,v $ - * Revision 2.0 86/09/17 15:37:25 lwall - * Baseline for netwide release. - * - */ +/* inputting files to be patched */ -EXT LINENUM input_lines INIT(0); /* how long is input file in lines */ -EXT LINENUM last_frozen_line INIT(0); /* how many input lines have been */ - /* irretractibly output */ +/* $Id: inp.h,v 1.4 1997/04/07 01:07:00 eggert Exp $ */ -bool rev_in_string(); -void scan_input(); -bool plan_a(); /* returns false if insufficient memory */ -void plan_b(); -char *ifetch(); +XTERN LINENUM input_lines; /* how long is input file in lines */ +char const *ifetch PARAMS ((LINENUM, int, size_t *)); +void get_input_file PARAMS ((char const *, char const *)); +void re_input PARAMS ((void)); +void scan_input PARAMS ((char *)); |