summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1995-11-09(struct pathstack): Move dcl to precede prototypes.Jim Meyering
1995-11-09(enum filetype): Move dcl to precede prototypes.Jim Meyering
(struct fileinfo): Likewise. Add const attribute to some parameters.
1995-11-09Protoize.Jim Meyering
1995-11-08(usage): Clarify descriptions of ignpar and ignbrk.Jim Meyering
From Theodore Ts'o and Ulrich Windl.
1995-11-07New option: --verbose.Jim Meyering
(main): Recognize it. (usage): Document it. From Marty Leisner <leisner@sdsp.mc.xerox.com>.
1995-11-06(usage): Remove last sentence. It is redundant.Jim Meyering
1995-11-06[__P]: Define. Use it in prototyped forward decls.Jim Meyering
1995-11-06(store_columns): Remove spurious 2nd argument in call to read_line.Jim Meyering
1995-11-06Protoize.Jim Meyering
1995-11-05(join): Protoize. Somehow, protoize missed this one.Jim Meyering
1995-11-05Protect prototypes with __P.Jim Meyering
1995-11-05Move prototypes after struct declarations.Jim Meyering
Remove prototypes for xmalloc, xrealloc. (new_control_record): Cast arg 1 to realloc.
1995-11-05Protoize.Jim Meyering
1995-11-05[__P]: Test PROTOTYPES, not __STDC__.Jim Meyering
Protoize.
1995-11-05(close_output_file): Set output_stream to NULL so we don't recurseJim Meyering
endlessly between this function and cleanup.
1995-11-05(unquote): Add casts to avoid signed char* from/to char* warnings.Jim Meyering
1995-11-03(remove_file, remove_dir): Use euidaccess instead of euidaccess_stat.Likewise.Jim Meyering
1995-11-03(do_move): Use euidaccess instead of euidaccess_stat.Likewise.Jim Meyering
1995-11-03(copy): Use euidaccess instead of euidaccess_stat.Jim Meyering
1995-11-02Add `const' attribute to some parameters.Jim Meyering
1995-11-02Protoize.Jim Meyering
1995-11-02Reorder functions to obviate forward dcls.Jim Meyering
Remove forward dcls.
1995-10-31(isdigits, convint): Remove these.Jim Meyering
(main): Use xstrtol instead.
1995-10-31Add `const' attribute to some parameters.Jim Meyering
1995-10-31protoize.Jim Meyering
1995-10-31Reorder functions to obviate forward dcls.Jim Meyering
Remove forward dcls.
1995-10-31(usage, next_line_num, main): Protoize.Jim Meyering
1995-10-31Add `const' attribute to some parameters.Jim Meyering
1995-10-31Add `const' attribute to some parameters.Jim Meyering
1995-10-30Protoize.Jim Meyering
1995-10-30Reorder functions to obviate forward dcls.Jim Meyering
Remove forward dcls.
1995-10-30(copy): Update one of the calls to eaccess_stat to use 3 arguments. Ugh!Jim Meyering
1995-10-29(xwrite): Give output buffer parameter const attribute.Jim Meyering
(output): Likewise for both parameters. (tac): Likewise for file name parameter. (tac_file): Likewise.
1995-10-29protoize.Jim Meyering
1995-10-29Reorder functions to obviate forward dcls.Jim Meyering
Remove forward dcls.
1995-10-29(bsd_sum_file): Give file name parameter const attribute.Jim Meyering
(sysv_sum_file): Likewise.
1995-10-29Protoize.Jim Meyering
1995-10-29(main): Move function body to end of file.Jim Meyering
Remove forward dcls.
1995-10-29(nl_file): Give parameter const attribute.Jim Meyering
Protoize.
1995-10-29Reorder functions to obviate forward dcls.Jim Meyering
Remove forward dcls.
1995-10-29(main): Move function body to end of file.Jim Meyering
Remove forward dcls and protoize.
1995-10-29Rename --file to --reference.Jim Meyering
Leave --file as an alias, for now. It will be removed later. (usage): Update, but don't mention --file.
1995-10-29[TEST_STANDALONE]: Define.Jim Meyering
1995-10-28(md5_check): Use the same message format when the single file has aJim Meyering
read error or checksum mismatch as when there are more. Write diagnostic to stderr, not stdout.
1995-10-28New option --reference=FILE (-r FILE) analogous to theJim Meyering
like-named touch option. (main): Recognize it and give diagnostic for misuse. (usage): Describe briefly. From Franc,ois Pinard. (batch_convert): Close input stream also when it's not stdin. (main): Reorganize to do option-consistency checks before all else.
1995-10-27(batch_convert): Close input stream also when it's not stdin.Jim Meyering
1995-10-26(main): Use xfopen, not xtmpopen to open final output file.Jim Meyering
1995-10-26(xtmpfopen): New function -- for opening temp files.Jim Meyering
Use it instead of xfopen.
1995-10-26(xfopen): Rewrite using open/fdopen in order to setJim Meyering
proper permissions on temporary files. Reported by Erik Corry (erik@kroete2.freinet.de).
1995-10-20(BEGIN_STATE): Use INT_MAX - 1 so as not to interfere with large repeat counts.Jim Meyering
(struct E_string): New struct. (find_closing_delim): Take E_string arg rather than char* and length. (find_bracketed_repeat): Likewise. (star_digits_closebracket): New function. (append_char_class): No longer give diagnostic. (append_equiv_class): No longer give diagnostic. (build_spec_list): Give them here instead, allowing things like [:*][:upper:] that got errors before. Take E_string arg rather than char*. Convert switch stmts into if-then so as to use ES_MATCH.