blob: 87db1f24f8b33730276db9f2312b23e60af94324 [file] [log] [blame]
Matt Kraaiceeff732001-06-21 19:41:37 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini dirname function.
4 *
5 * Copyright (C) 2001 Matt Kraai.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
Manuel Novoa III a2949aa2001-06-29 18:59:32 +000022#include <string.h>
Matt Kraaiceeff732001-06-21 19:41:37 +000023#include "libbb.h"
24
Matt Kraaiac20ce12001-08-24 19:51:54 +000025/* Return a string containing the path name of the parent
26 * directory of PATH. */
Matt Kraaiceeff732001-06-21 19:41:37 +000027
28char *dirname(const char *path)
29{
30 const char *s;
31
32 /* Go to the end of the string. */
33 s = path + strlen(path) - 1;
34
35 /* Strip off trailing /s (unless it is also the leading /). */
36 while (path < s && s[0] == '/')
37 s--;
38
39 /* Strip the last component. */
40 while (path <= s && s[0] != '/')
41 s--;
42
43 while (path < s && s[0] == '/')
44 s--;
45
46 if (s < path)
Matt Kraaiac20ce12001-08-24 19:51:54 +000047 return ".";
48
49 s[1] = '\0';
50 return path;
Matt Kraaiceeff732001-06-21 19:41:37 +000051}