This commit is contained in:
2026-04-27 00:08:01 +02:00
parent 4a208a7527
commit 082353e0b8
6 changed files with 20 additions and 10 deletions
+8 -4
View File
@@ -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;
}