created files

This commit is contained in:
alejeune 2023-04-06 10:07:47 +02:00
parent b76786e08c
commit fbb27f6d31
2 changed files with 16 additions and 0 deletions

2
table.c Normal file
View file

@ -0,0 +1,2 @@
#include <table.h>

14
table.h Normal file
View file

@ -0,0 +1,14 @@
#include <stdio.h>
#include <stdbool.h>
enum enumVarType {INT, FLOAT, CHAR, STRING};
struct symbol {
char* name;
bool init;
enumVarType varType;
int offset;
int deep;
};