1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* basename.c -- return the last element in a file name
5 Copyright (C) 1990, 1998-2001, 2003-2006, 2009-2011 Free Software
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
27 /* Return the address of the last file name component of NAME. If
28 NAME has no relative file name components because it is a file
29 system root, return the empty string. */
32 last_component (char const *name
)
34 char const *base
= name
+ FILE_SYSTEM_PREFIX_LEN (name
);
36 bool saw_slash
= false;
38 while (ISSLASH (*base
))
41 for (p
= base
; *p
; p
++)
55 /* Return the length of the basename NAME. Typically NAME is the
56 value returned by base_name or last_component. Act like strlen
57 (NAME), except omit all trailing slashes. */
60 base_len (char const *name
)
63 size_t prefix_len
= FILE_SYSTEM_PREFIX_LEN (name
);
65 for (len
= strlen (name
); 1 < len
&& ISSLASH (name
[len
- 1]); len
--)
68 if (DOUBLE_SLASH_IS_DISTINCT_ROOT
&& len
== 1
69 && ISSLASH (name
[0]) && ISSLASH (name
[1]) && ! name
[2])
72 if (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE
&& prefix_len
73 && len
== prefix_len
&& ISSLASH (name
[prefix_len
]))
74 return prefix_len
+ 1;