merge with 1.10n2
[platform/upstream/coreutils.git] / src / basename.c
1 /* basename -- strip directory and suffix from filenames
2    Copyright (C) 90, 91, 92, 93, 1994 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 /* Usage: basename name [suffix]
19    NAME is a pathname; SUFFIX is a suffix to strip from it.
20
21    basename /usr/foo/lossage/functions.l
22    => functions.l
23    basename /usr/foo/lossage/functions.l .l
24    => functions
25    basename functions.lisp p
26    => functions.lis */
27
28 #ifdef HAVE_CONFIG_H
29 #include <config.h>
30 #endif
31
32 #include <stdio.h>
33 #include <sys/types.h>
34
35 #include "system.h"
36 #include "version.h"
37 #include "long-options.h"
38
39 char *basename ();
40 void strip_trailing_slashes ();
41
42 static void remove_suffix ();
43
44 /* The name this program was run with. */
45 char *program_name;
46
47 static void
48 usage (status)
49      int status;
50 {
51   if (status != 0)
52     fprintf (stderr, "Try `%s --help' for more information.\n",
53              program_name);
54   else
55     {
56       printf ("\
57 Usage: %s PATH [SUFFIX]\n\
58   or:  %s OPTION\n\
59 ",
60               program_name, program_name);
61       printf ("\
62 \n\
63   --help      display this help and exit\n\
64   --version   output version information and exit\n\
65 ");
66     }
67   exit (status);
68 }
69
70 void
71 main (argc, argv)
72      int argc;
73      char **argv;
74 {
75   char *name;
76
77   program_name = argv[0];
78
79   parse_long_options (argc, argv, "basename", version_string, usage);
80
81   if (argc == 1 || argc > 3)
82     usage (1);
83
84   strip_trailing_slashes (argv[1]);
85
86   name = basename (argv[1]);
87
88   if (argc == 3)
89     remove_suffix (name, argv[2]);
90
91   puts (name);
92
93   exit (0);
94 }
95
96 /* Remove SUFFIX from the end of NAME if it is there, unless NAME
97    consists entirely of SUFFIX. */
98
99 static void
100 remove_suffix (name, suffix)
101      register char *name, *suffix;
102 {
103   register char *np, *sp;
104
105   np = name + strlen (name);
106   sp = suffix + strlen (suffix);
107
108   while (np > name && sp > suffix)
109     if (*--np != *--sp)
110       return;
111   if (np > name)
112     *np = '\0';
113 }