j
This commit is contained in:
@@ -1,12 +1,16 @@
|
||||
#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){
|
||||
return;
|
||||
|
||||
(void) tree;
|
||||
(void) value;
|
||||
return;
|
||||
}
|
||||
|
||||
void pretty_print(struct vector *tree);
|
||||
void pretty_print(struct vector *tree){ (void) tree;}
|
||||
|
||||
Reference in New Issue
Block a user