This commit is contained in:
2026-04-27 00:01:08 +02:00
parent 58308cc602
commit 4a208a7527
7 changed files with 150 additions and 17 deletions
+12 -4
View File
@@ -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[]);