Skip to content
Snippets Groups Projects

Final commit

2 files
+ 52
3
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 5
0
@@ -7,6 +7,10 @@
typedef struct Node
{
/**
* Parent of this node
*/
struct Node *parent;
/**
* Left child of this node
*/
@@ -91,5 +95,6 @@ void tree_print(Tree *tree, int printNewline);
* @return
*/
Node *tree_find(Tree *node, int age, char *name);
char *checkChildrenRelationship(Node *parentNode);
#endif // C_IMPLEMENTATION_TREE_H
Loading