14 lines
194 B
C
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;
|
|
};
|
|
|
|
|