add ext4,vfat and tar.bz2
[u-tools.git] / u-tools / apps / tar / gnu / basename-lgpl.c
blobca8989f0cda23af01ea62211f6137b3a05bae175
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
6 Foundation, Inc.
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/>. */
21 #include <config.h>
23 #include "dirname.h"
25 #include <string.h>
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. */
31 char *
32 last_component (char const *name)
34 char const *base = name + FILE_SYSTEM_PREFIX_LEN (name);
35 char const *p;
36 bool saw_slash = false;
38 while (ISSLASH (*base))
39 base++;
41 for (p = base; *p; p++)
43 if (ISSLASH (*p))
44 saw_slash = true;
45 else if (saw_slash)
47 base = p;
48 saw_slash = false;
52 return (char *) base;
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. */
59 size_t
60 base_len (char const *name)
62 size_t len;
63 size_t prefix_len = FILE_SYSTEM_PREFIX_LEN (name);
65 for (len = strlen (name); 1 < len && ISSLASH (name[len - 1]); len--)
66 continue;
68 if (DOUBLE_SLASH_IS_DISTINCT_ROOT && len == 1
69 && ISSLASH (name[0]) && ISSLASH (name[1]) && ! name[2])
70 return 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;
76 return len;