cfe6cca5e2d23026b6766c824e8b24d37742cc70
[oweals/busybox.git] / coreutils / uniq.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini uniq implementation for busybox
4  *
5  *
6  * Copyright (C) 1999,2000 by Lineo, inc.
7  * Written by John Beppu <beppu@lineo.com>
8  * Rewritten by Matt Kraai <kraai@alumni.carnegiemellon.edu>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23  *
24  */
25
26 #include "busybox.h"
27 #include <stdio.h>
28 #include <string.h>
29 #include <errno.h>
30
31 int uniq_main(int argc, char **argv)
32 {
33         FILE *in = stdin, *out = stdout;
34         char *lastline = NULL, *input;
35
36         /* parse argv[] */
37         if ((argc > 1 && **(argv + 1) == '-') || argc > 3)
38                 usage(uniq_usage);
39
40         if (argv[1] != NULL) {
41                 in = xfopen(argv[1], "r");
42                 if (argv[2] != NULL)
43                         out = xfopen(argv[2], "w");
44         }
45
46         while ((input = get_line_from_file(in)) != NULL) {
47                 if (lastline == NULL || strcmp(input, lastline) != 0) {
48                         fputs(input, out);
49                         free(lastline);
50                         lastline = input;
51                 }
52         }
53         free(lastline);
54
55         return EXIT_SUCCESS;
56 }