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
2026-04-20 20:09:16 +02:00

13 lines
280 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);
struct node *parse_file(const char *filename);
void execute_tree(struct node *node, int value);
int main(int argc, char *argv[]);