created files

This commit is contained in:
alejeune 2023-04-06 10:07:47 +02:00
父節點 b76786e08c
當前提交 fbb27f6d31
共有 2 個文件被更改,包括 16 次插入0 次删除

2
table.c Normal file
查看文件

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

14
table.h Normal file
查看文件

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