Fixed up copyright notices and such
[platform/upstream/busybox.git] / coreutils / cat.c
1 /*
2  * Mini Cat implementation for busybox
3  *
4  * Copyright (C) 1999 by Lineo, inc.
5  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  *
21  */
22
23 #include "internal.h"
24 #include <stdio.h>
25
26
27 static void print_file( FILE *file) 
28 {
29     int c;
30     while ((c = getc(file)) != EOF)
31         putc(c, stdout);
32     fclose(file);
33     fflush(stdout);
34 }
35
36 extern int cat_main(int argc, char **argv)
37 {
38     FILE *file;
39
40     if (argc==1) {
41         print_file( stdin);
42         exit( TRUE);
43     }
44
45     if ( **(argv+1) == '-' ) {
46         usage ("cat [file ...]\n");
47     }
48     argc--;
49     argv++;
50
51     while (argc-- > 0) {
52         file = fopen(*argv, "r");
53         if (file == NULL) {
54             perror(*argv);
55             exit(FALSE);
56         }
57         print_file( file);
58         argc--;
59         argv++;
60     }
61     exit(TRUE);
62 }