1/*	$NetBSD: basename.c,v 1.1.1.1 2016/01/13 03:15:30 christos Exp $	*/
2
3/* basename.c -- return the last element in a path
4   Copyright (C) 1990, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   This program 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
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with this program; if not, write to the Free Software Foundation,
18   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19
20#if HAVE_CONFIG_H
21# include <config.h>
22#endif
23
24#if STDC_HEADERS || HAVE_STRING_H
25# include <string.h>
26#endif
27#include "dirname.h"
28
29/* In general, we can't use the builtin `basename' function if available,
30   since it has different meanings in different environments.
31   In some environments the builtin `basename' modifies its argument.
32
33   Return the address of the last file name component of NAME.  If
34   NAME has no file name components because it is all slashes, return
35   NAME if it is empty, the address of its last slash otherwise.  */
36
37char *
38base_name (char const *name)
39{
40  char const *base = name + FILESYSTEM_PREFIX_LEN (name);
41  char const *p;
42
43  for (p = base; *p; p++)
44    {
45      if (ISSLASH (*p))
46	{
47	  /* Treat multiple adjacent slashes like a single slash.  */
48	  do p++;
49	  while (ISSLASH (*p));
50
51	  /* If the file name ends in slash, use the trailing slash as
52	     the basename if no non-slashes have been found.  */
53	  if (! *p)
54	    {
55	      if (ISSLASH (*base))
56		base = p - 1;
57	      break;
58	    }
59
60	  /* *P is a non-slash preceded by a slash.  */
61	  base = p;
62	}
63    }
64
65  return (char *) base;
66}
67
68/* Return the length of of the basename NAME.  Typically NAME is the
69   value returned by base_name.  Act like strlen (NAME), except omit
70   redundant trailing slashes.  */
71
72size_t
73base_len (char const *name)
74{
75  size_t len;
76
77  for (len = strlen (name);  1 < len && ISSLASH (name[len - 1]);  len--)
78    continue;
79
80  return len;
81}
82