dvitomp fix from Akira
[mplib] / src / texk / kpathsea / xbasename.c
1 /* xbasename.c: return the last element in a path.
2
3    Copyright 1992, 1994, 1995, 1996, 2008 Karl Berry.
4    Copyright 2005 Olaf Weber.
5
6    This library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2.1 of the License, or (at your option) any later version.
10
11    This library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
15
16    You should have received a copy of the GNU Lesser General Public License
17    along with this library; if not, see <http://www.gnu.org/licenses/>.  */
18
19 /* Have to include this first to get c-auto.h.  */
20 #include <kpathsea/config.h>
21
22 #include <kpathsea/c-pathch.h>
23
24 /* Return NAME with any leading path stripped off.  This returns a
25    pointer into NAME.  For example, `basename ("/foo/bar.baz")'
26    returns "bar.baz".  */
27
28 const_string
29 xbasename P1C(const_string, name)
30 {
31     const_string base = NULL;
32     unsigned len;
33   
34     for (len = strlen(name); len > 0; len--) {
35         if (IS_DIR_SEP(name[len - 1]) || IS_DEVICE_SEP(name[len - 1])) {
36             base = name + len;
37             break;
38         }
39     }
40     
41     if (!base)
42         base = name;
43     
44     return base;
45 }