blob: decf92e5a0d14b391fe6f29be3d13ed07a7b2020 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
* get_path.c
*
* Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
*/
#include "config.h"
#include "fstree.h"
#include <string.h>
#include <stdlib.h>
char *fstree_get_path(tree_node_t *node)
{
tree_node_t *it;
char *str, *ptr;
size_t len = 0;
if (node->parent == NULL)
return strdup("/");
for (it = node; it != NULL && it->parent != NULL; it = it->parent) {
len += strlen(it->name) + 1;
}
str = malloc(len + 1);
if (str == NULL)
return NULL;
ptr = str + len;
*ptr = '\0';
for (it = node; it != NULL && it->parent != NULL; it = it->parent) {
len = strlen(it->name);
ptr -= len;
memcpy(ptr, it->name, len);
*(--ptr) = '/';
}
return str;
}
|