Projet-Systemes-Informatiques/table.h
2023-04-06 10:07:47 +02:00

14 lines
194 B
C

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