This repository has been archived on 2026-05-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
prog-104-p-05-2030/The-Nook-GamesTM/Fundamentals/vector_tree.c
T
2026-04-27 00:08:01 +02:00

17 lines
307 B
C

#include "vector_tree.h"
struct vector *insert(struct vector *tree, int value){
(void) tree;
(void) value;
return NULL;
}
void delete_node(struct vector *tree, int value){
(void) tree;
(void) value;
return;
}
void pretty_print(struct vector *tree){ (void) tree;}