Projet-Systemes-Informatiques/table.h
2023-04-06 11:03:34 +02:00

14 lines
202 B
C

#include <stdio.h>
#include <stdbool.h>
enum enumVarType {INT, FLOAT}; // a adapter
typedef struct {
char* name;
bool init;
enumVarType varType;
int offset;
int deep;
} Symbol;