created files

Tento commit je obsažen v:
alejeune 2023-04-06 10:07:47 +02:00
rodič b76786e08c
revize fbb27f6d31
2 změnil soubory, kde provedl 16 přidání a 0 odebrání

2
table.c Normální soubor
Zobrazit soubor

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

14
table.h Normální soubor
Zobrazit soubor

@ -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;
};