GPAK  1.0.0
A general-purpose archive library

◆ filesystem_tree_create()

GPAK_API filesystem_tree_node_t* filesystem_tree_create ( )
Brief Description:\n Creates a new filesystem tree node.

This function initializes and returns a new filesystem tree node, which is the root of the filesystem tree.

Returns
A pointer to the created filesystem_tree_node_t.

Definition at line 105 of file filesystem_tree.c.

106 {
107  return _create_node("", NULL);
108 }

Referenced by gpak_open().