/* SPDX-License-Identifier: GPL-3.0-or-later */
#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;
}