inp.h revision 1.1
11.1Scgd/* $Header: /tank/opengrok/rsync2/NetBSD/src/usr.bin/patch/inp.h,v 1.1 1993/04/09 11:34:01 cgd Exp $ 21.1Scgd * 31.1Scgd * $Log: inp.h,v $ 41.1Scgd * Revision 1.1 1993/04/09 11:34:01 cgd 51.1Scgd * patch 2.0.12u8, from prep.ai.mit.edu. this is not under the GPL. 61.1Scgd * 71.1Scgd * Revision 2.0 86/09/17 15:37:25 lwall 81.1Scgd * Baseline for netwide release. 91.1Scgd * 101.1Scgd */ 111.1Scgd 121.1ScgdEXT LINENUM input_lines INIT(0); /* how long is input file in lines */ 131.1ScgdEXT LINENUM last_frozen_line INIT(0); /* how many input lines have been */ 141.1Scgd /* irretractibly output */ 151.1Scgd 161.1Scgdbool rev_in_string(); 171.1Scgdvoid scan_input(); 181.1Scgdbool plan_a(); /* returns false if insufficient memory */ 19void plan_b(); 20char *ifetch(); 21 22