Skip to content
Snippets Groups Projects
Commit 79c4a814 authored by florian.burgener's avatar florian.burgener
Browse files

Validation exercice 4

parent 6b00b587
No related branches found
No related tags found
No related merge requests found
......@@ -201,6 +201,12 @@ Matrix *quadtree_to_matrix(Node *root) {
// ---
/**
* @brief Clone a Quadtree.
*
* @param root
* @return Node*
*/
Node *clone(Node *root) {
if (root == NULL) {
return NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment