Initial import from FreeBSD RELENG_4:
[dragonfly.git] / gnu / usr.bin / patch / inp.h
1 /* $FreeBSD: src/gnu/usr.bin/patch/inp.h,v 1.6.2.1 2002/04/30 20:40:02 gad Exp $
2  *
3  * $Log: inp.h,v $
4  * Revision 2.0  86/09/17  15:37:25  lwall
5  * Baseline for netwide release.
6  *
7  */
8
9 EXT LINENUM input_lines INIT(0);        /* how long is input file in lines */
10 EXT LINENUM last_frozen_line INIT(0);   /* how many input lines have been */
11                                         /* irretractibly output */
12 void     re_input(void);
13 void     scan_input(char *_filename);
14 bool     plan_a(char *_filename);
15 void     plan_b(char *_filename);
16 bool     rev_in_string(char *_string);
17 char    *ifetch(LINENUM _line, int _whichbuf);
18