created files

這個提交存在於:
alejeune 2023-04-06 10:07:47 +02:00
父節點 b76786e08c
當前提交 fbb27f6d31
共有 2 個檔案被更改,包括 16 行新增0 行删除

2
table.c 一般檔案
查看文件

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

14
table.h 一般檔案
查看文件

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