j
This commit is contained in:
@@ -5,17 +5,21 @@
|
||||
#include <sys/types.h>
|
||||
|
||||
struct node *create_node(const char *line){
|
||||
|
||||
(void) line;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
struct node *parse_file(const char *filename){
|
||||
|
||||
(void) filename;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void execute_tree(struct node *node, int value){
|
||||
return NULL;
|
||||
(void)node;
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[]);
|
||||
int main(int argc, char *argv[]){
|
||||
(void) argc;
|
||||
(void) argv;
|
||||
return 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user