all files: make most variables static and const when possible.
[platform/upstream/coreutils.git] / src / tty.c
1 /* tty -- print the path of the terminal connected to standard input
2    Copyright (C) 1990, 1991 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
17
18 /* Displays "not a tty" if stdin is not a terminal.
19    Displays nothing if -s option is given.
20    Exit status 0 if stdin is a tty, 1 if not, 2 if usage error.
21
22  Written by David MacKenzie (djm@ai.mit.edu).  */
23
24 #include <stdio.h>
25 #include <getopt.h>
26 #include <sys/types.h>
27 #include "system.h"
28
29 static void usage ();
30
31 /* The name under which this program was run. */
32 char *program_name;
33
34 /* If nonzero, return an exit status but produce no output. */
35 static int silent;
36
37 static struct option const longopts[] =
38 {
39   {"silent", 0, NULL, 's'},
40   {"quiet", 0, NULL, 's'},
41   {NULL, 0, NULL, 0}
42 };
43
44 void
45 main (argc, argv)
46      int argc;
47      char **argv;
48 {
49   char *tty;
50   int optc;
51
52   program_name = argv[0];
53   silent = 0;
54
55   while ((optc = getopt_long (argc, argv, "s", longopts, (int *) 0)) != EOF)
56     {
57       switch (optc)
58         {
59         case 's':
60           silent = 1;
61           break;
62         default:
63           usage ();
64         }
65     }
66
67   if (optind != argc)
68     usage ();
69
70   tty = ttyname (0);
71   if (!silent)
72     {
73       if (tty)
74         puts (tty);
75       else
76         puts ("not a tty");
77     }
78
79   exit (tty == NULL);
80 }
81
82 static void
83 usage ()
84 {
85   fprintf (stderr, "\
86 Usage: %s [-s] [--silent] [--quiet]\n", program_name);
87   exit (2);
88 }