Matt Kraai | ceeff73 | 2001-06-21 19:41:37 +0000 | [diff] [blame] | 1 | /* 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 | a2949aa | 2001-06-29 18:59:32 +0000 | [diff] [blame] | 22 | #include <string.h> |
Matt Kraai | ceeff73 | 2001-06-21 19:41:37 +0000 | [diff] [blame] | 23 | #include "libbb.h" |
| 24 | |
Matt Kraai | ac20ce1 | 2001-08-24 19:51:54 +0000 | [diff] [blame^] | 25 | /* Return a string containing the path name of the parent |
| 26 | * directory of PATH. */ |
Matt Kraai | ceeff73 | 2001-06-21 19:41:37 +0000 | [diff] [blame] | 27 | |
| 28 | char *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 Kraai | ac20ce1 | 2001-08-24 19:51:54 +0000 | [diff] [blame^] | 47 | return "."; |
| 48 | |
| 49 | s[1] = '\0'; |
| 50 | return path; |
Matt Kraai | ceeff73 | 2001-06-21 19:41:37 +0000 | [diff] [blame] | 51 | } |