From: Jim Meyering Date: Tue, 31 Oct 1995 02:21:37 +0000 (+0000) Subject: Add `const' attribute to some parameters. X-Git-Tag: FILEUTILS-3_12f~18 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b0302bb3a61f0a8cebe324fb7cc80b166bd0d249;p=thirdparty%2Fcoreutils.git Add `const' attribute to some parameters. --- diff --git a/src/uniq.c b/src/uniq.c index 86b3d04476..10c36d194c 100644 --- a/src/uniq.c +++ b/src/uniq.c @@ -123,7 +123,7 @@ Fields are skipped before chars. \n\ return a pointer to the beginning of the line's field to be compared. */ static char * -find_field (struct linebuffer *line) +find_field (const struct linebuffer *line) { register int count; register char *lp = line->buffer; @@ -150,7 +150,7 @@ find_field (struct linebuffer *line) OLDLEN and NEWLEN are their lengths. */ static int -different (char *old, char *new, int oldlen, int newlen) +different (const char *old, const char *new, int oldlen, int newlen) { register int order; @@ -173,7 +173,7 @@ different (char *old, char *new, int oldlen, int newlen) LINECOUNT + 1 is the number of times that the line occurred. */ static void -writeline (struct linebuffer *line, FILE *stream, int linecount) +writeline (const struct linebuffer *line, FILE *stream, int linecount) { if ((mode == output_unique && linecount != 0) || (mode == output_repeated && linecount == 0)) @@ -190,7 +190,7 @@ writeline (struct linebuffer *line, FILE *stream, int linecount) If either is "-", use the standard I/O stream for it instead. */ static void -check_file (char *infile, char *outfile) +check_file (const char *infile, const char *outfile) { FILE *istream; FILE *ostream;