summaryrefslogtreecommitdiff
path: root/libbb/simplify_path.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-12-27 04:35:04 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-12-27 04:35:04 +0000
commit8d42f86b146871ae4c4cafd3801a85f381249a14 (patch)
treeb963999fc54eddb65f1929b894f868e24851fc9c /libbb/simplify_path.c
downloadbusybox-w32-8d42f86b146871ae4c4cafd3801a85f381249a14.tar.gz
busybox-w32-8d42f86b146871ae4c4cafd3801a85f381249a14.tar.bz2
busybox-w32-8d42f86b146871ae4c4cafd3801a85f381249a14.zip
Correcting branch name to be like previous ones
Diffstat (limited to 'libbb/simplify_path.c')
-rw-r--r--libbb/simplify_path.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/libbb/simplify_path.c b/libbb/simplify_path.c
new file mode 100644
index 000000000..b714c66b6
--- /dev/null
+++ b/libbb/simplify_path.c
@@ -0,0 +1,50 @@
1/* vi: set sw=4 ts=4: */
2/*
3 * bb_simplify_path implementation for busybox
4 *
5 * Copyright (C) 2001 Manuel Novoa III <mjn3@codepoet.org>
6 *
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8 */
9
10#include "libbb.h"
11
12char *bb_simplify_path(const char *path)
13{
14 char *s, *start, *p;
15
16 if (path[0] == '/')
17 start = xstrdup(path);
18 else {
19 s = xgetcwd(NULL);
20 start = concat_path_file(s, path);
21 free(s);
22 }
23 p = s = start;
24
25 do {
26 if (*p == '/') {
27 if (*s == '/') { /* skip duplicate (or initial) slash */
28 continue;
29 } else if (*s == '.') {
30 if (s[1] == '/' || s[1] == 0) { /* remove extra '.' */
31 continue;
32 } else if ((s[1] == '.') && (s[2] == '/' || s[2] == 0)) {
33 ++s;
34 if (p > start) {
35 while (*--p != '/'); /* omit previous dir */
36 }
37 continue;
38 }
39 }
40 }
41 *++p = *s;
42 } while (*++s);
43
44 if ((p == start) || (*p != '/')) { /* not a trailing slash */
45 ++p; /* so keep last character */
46 }
47 *p = 0;
48
49 return start;
50}