This repository has been archived on 2026-05-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
prog-104-p-05-2030/The-Nook-GamesTM/Fundamentals/parsing.c
T
2026-04-27 00:08:01 +02:00

26 lines
425 B
C

#include "parsing.h"
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#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){
(void)node;
}
int main(int argc, char *argv[]){
(void) argc;
(void) argv;
return 1;
}