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