.
[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 #if defined (CONFIG_BROKETS)
30 /* We use <config.h> instead of "config.h" so that a compilation
31    using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
32    (which it would do because it found this file in $srcdir).  */
33 #include <config.h>
34 #else
35 #include "config.h"
36 #endif
37 #endif
38
39 #include <stdio.h>
40 #include <sys/types.h>
41
42 #include "system.h"
43 #include "long-options.h"
44
45 char *basename ();
46 void strip_trailing_slashes ();
47
48 static void remove_suffix ();
49
50 /* The name this program was run with. */
51 char *program_name;
52
53 static void
54 usage (status)
55      int status;
56 {
57   if (status != 0)
58     fprintf (stderr, "Try `%s --help' for more information.\n",
59              program_name);
60   else
61     {
62       printf ("Usage: %s [OPTION]... PATH [SUFFIX]\n", program_name);
63       printf ("\
64 \n\
65   --help      display this help and exit\n\
66   --version   output version information and exit\n\
67 ");
68     }
69   exit (status);
70 }
71
72 void
73 main (argc, argv)
74      int argc;
75      char **argv;
76 {
77   char *name;
78
79   program_name = argv[0];
80
81   parse_long_options (argc, argv, usage);
82
83   if (argc == 1 || argc > 3)
84     usage (1);
85
86   strip_trailing_slashes (argv[1]);
87
88   name = basename (argv[1]);
89
90   if (argc == 3)
91     remove_suffix (name, argv[2]);
92
93   puts (name);
94
95   exit (0);
96 }
97
98 /* Remove SUFFIX from the end of NAME if it is there, unless NAME
99    consists entirely of SUFFIX. */
100
101 static void
102 remove_suffix (name, suffix)
103      register char *name, *suffix;
104 {
105   register char *np, *sp;
106
107   np = name + strlen (name);
108   sp = suffix + strlen (suffix);
109
110   while (np > name && sp > suffix)
111     if (*--np != *--sp)
112       return;
113   if (np > name)
114     *np = '\0';
115 }