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