1998-02-24 22:58:26 +00:00
|
|
|
/* basename.c -- return the last element in a path
|
2000-07-09 07:22:43 +00:00
|
|
|
Copyright (C) 1990, 1998, 1999, 2000 Free Software Foundation, Inc.
|
1998-02-24 22:58:26 +00:00
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software Foundation,
|
|
|
|
|
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
1992-11-01 05:44:29 +00:00
|
|
|
|
1997-05-27 09:41:25 +00:00
|
|
|
#if HAVE_CONFIG_H
|
|
|
|
|
# include <config.h>
|
|
|
|
|
#endif
|
1992-11-01 05:44:29 +00:00
|
|
|
|
2000-07-23 09:25:14 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
1997-05-27 09:41:25 +00:00
|
|
|
#ifndef FILESYSTEM_PREFIX_LEN
|
1998-02-24 22:59:34 +00:00
|
|
|
# define FILESYSTEM_PREFIX_LEN(Filename) 0
|
1997-05-27 09:41:25 +00:00
|
|
|
#endif
|
1992-11-01 05:44:29 +00:00
|
|
|
|
1999-09-26 18:37:02 +00:00
|
|
|
#ifndef PARAMS
|
|
|
|
|
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
|
|
|
|
|
# define PARAMS(Args) Args
|
|
|
|
|
# else
|
|
|
|
|
# define PARAMS(Args) ()
|
|
|
|
|
# endif
|
|
|
|
|
#endif
|
|
|
|
|
|
1997-05-27 09:41:25 +00:00
|
|
|
#ifndef ISSLASH
|
1998-02-24 22:59:34 +00:00
|
|
|
# define ISSLASH(C) ((C) == '/')
|
1995-01-27 15:23:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
1999-09-26 18:37:02 +00:00
|
|
|
char *base_name PARAMS ((char const *name));
|
|
|
|
|
|
1997-05-27 09:41:25 +00:00
|
|
|
/* In general, we can't use the builtin `basename' function if available,
|
|
|
|
|
since it has different meanings in different environments.
|
1999-03-13 16:09:00 +00:00
|
|
|
In some environments the builtin `basename' modifies its argument.
|
1999-03-13 16:19:18 +00:00
|
|
|
If NAME is all slashes, be sure to return `/'. */
|
1992-11-01 05:44:29 +00:00
|
|
|
|
|
|
|
|
char *
|
1998-02-24 22:59:34 +00:00
|
|
|
base_name (char const *name)
|
1992-11-01 05:44:29 +00:00
|
|
|
{
|
1997-05-27 09:41:25 +00:00
|
|
|
char const *base = name += FILESYSTEM_PREFIX_LEN (name);
|
1999-03-13 16:09:00 +00:00
|
|
|
int all_slashes = 1;
|
|
|
|
|
char const *p;
|
|
|
|
|
|
|
|
|
|
for (p = name; *p; p++)
|
|
|
|
|
{
|
|
|
|
|
if (ISSLASH (*p))
|
|
|
|
|
base = p + 1;
|
|
|
|
|
else
|
|
|
|
|
all_slashes = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If NAME is all slashes, arrange to return `/'. */
|
|
|
|
|
if (*base == '\0' && ISSLASH (*name) && all_slashes)
|
|
|
|
|
--base;
|
1997-05-27 09:41:25 +00:00
|
|
|
|
2000-07-23 09:25:14 +00:00
|
|
|
/* Make sure the last byte is not a slash. */
|
2000-07-29 16:45:30 +00:00
|
|
|
assert (all_slashes || !ISSLASH (*(p - 1)));
|
2000-07-23 09:25:14 +00:00
|
|
|
|
1996-04-19 04:41:27 +00:00
|
|
|
return (char *) base;
|
1992-11-01 05:44:29 +00:00
|
|
|
}
|