f8fcf38217f86ad1373ddbd1b10de10bd0cf71a6
[platform/upstream/coreutils.git] / src / logname.c
1 /* logname -- print user's login name
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 #ifdef HAVE_CONFIG_H
19 #if defined (CONFIG_BROKETS)
20 /* We use <config.h> instead of "config.h" so that a compilation
21    using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
22    (which it would do because it found this file in $srcdir).  */
23 #include <config.h>
24 #else
25 #include "config.h"
26 #endif
27 #endif
28
29 #include <stdio.h>
30 #include <sys/types.h>
31 #include <getopt.h>
32
33 #include "version.h"
34 #include "system.h"
35
36 /* The name this program was run with. */
37 char *program_name;
38
39 /* If non-zero, display usage information and exit.  */
40 static int show_help;
41
42 /* If non-zero, print the version on standard output and exit.  */
43 static int show_version;
44
45 static struct option const long_options[] =
46 {
47   {"help", no_argument, &show_help, 1},
48   {"version", no_argument, &show_version, 1},
49   {0, 0, 0, 0}
50 };
51
52 static void
53 usage (status)
54      int status;
55 {
56   fprintf (status == 0 ? stdout : stderr, "\
57 Usage: %s [OPTION]...\n\
58 ",
59            program_name);
60
61   if (status != 0)
62     fprintf (stderr, "Try `%s --help' for more information.\n",
63              program_name);
64   else
65
66     printf ("\
67 \n\
68   --help      display this help and exit\n\
69   --version   output version information and exit\n\
70 ");
71
72   exit (status);
73 }
74
75 void
76 main (argc, argv)
77      int argc;
78      char **argv;
79 {
80   register char *cp;
81   int c;
82
83   program_name = argv[0];
84
85   while ((c = getopt_long (argc, argv, "", long_options, (int *) 0)) != EOF)
86     {
87       switch (c)
88         {
89         case 0:
90           break;
91
92         default:
93           usage (1);
94         }
95     }
96
97   if (show_version)
98     {
99       printf ("%s\n", version_string);
100       exit (0);
101     }
102
103   if (show_help)
104     usage (0);
105
106   if (argc - optind != 0)
107     usage (1);
108
109   /* POSIX.2 requires using getlogin (or equivalent code).  */
110   cp = getlogin ();
111   if (cp)
112     {
113       puts (cp);
114       exit (0);
115     }
116   /* POSIX.2 prohibits using a fallback technique.  */
117   fprintf (stderr,"%s: no login name\n", argv[0]);
118   exit (1);
119 }