diff options
| author | Garance A Drosehn <gad@FreeBSD.org> | 2002-04-28 01:33:45 +0000 |
|---|---|---|
| committer | Garance A Drosehn <gad@FreeBSD.org> | 2002-04-28 01:33:45 +0000 |
| commit | 38a1326cad12aa8f57c6acd7498f25503df976c9 (patch) | |
| tree | 7f720dcbd2c5958c3ebe9655a3d746b461a5aac7 /gnu/usr.bin/patch/inp.c | |
| parent | a3df8483c81347db7e5cc51d166838bcc8c02bfb (diff) | |
Notes
Diffstat (limited to 'gnu/usr.bin/patch/inp.c')
| -rw-r--r-- | gnu/usr.bin/patch/inp.c | 44 |
1 files changed, 23 insertions, 21 deletions
diff --git a/gnu/usr.bin/patch/inp.c b/gnu/usr.bin/patch/inp.c index 8aa7223dd650..dbc9bf980200 100644 --- a/gnu/usr.bin/patch/inp.c +++ b/gnu/usr.bin/patch/inp.c @@ -28,10 +28,11 @@ static LINENUM tiline[2] = {-1, -1}; /* 1st line in each buffer */ static LINENUM lines_per_buf; /* how many lines per buffer */ static int tireclen; /* length of records in tmp file */ -/* New patch--prepare to edit another file. */ - +/* + * New patch--prepare to edit another file. + */ void -re_input() +re_input(void) { if (using_plan_a) { i_size = 0; @@ -56,11 +57,11 @@ re_input() } } -/* Constuct the line index, somehow or other. */ - +/* + * Constuct the line index, somehow or other. + */ void -scan_input(filename) -char *filename; +scan_input(char *filename) { if (!plan_a(filename)) plan_b(filename); @@ -70,11 +71,11 @@ char *filename; } } -/* Try keeping everything in memory. */ - +/* + * Try keeping everything in memory. + */ bool -plan_a(filename) -char *filename; +plan_a(char *filename) { int ifd, statfailed; Reg1 char *s; @@ -247,11 +248,11 @@ char *filename; return TRUE; /* plan a will work */ } -/* Keep (virtually) nothing in memory. */ - +/* + * Keep (virtually) nothing in memory. + */ void -plan_b(filename) -char *filename; +plan_b(char *filename) { Reg3 FILE *ifp; Reg1 int i = 0; @@ -320,8 +321,9 @@ char *filename; } } -/* Fetch a line from the input file, \n terminated, not necessarily \0. */ - +/* + * Fetch a line from the input file, \n terminated, not necessarily \0. + */ char * ifetch(line,whichbuf) Reg1 LINENUM line; @@ -351,11 +353,11 @@ int whichbuf; /* ignored when file in memory */ } } -/* True if the string argument contains the revision number we want. */ - +/* + * True if the string argument contains the revision number we want. + */ bool -rev_in_string(string) -char *string; +rev_in_string(char *string) { Reg1 char *s; Reg2 int patlen; |
