fixed some of the spacing in the table t#29

This commit is contained in:
Meyer Simon
2025-02-21 10:09:26 -05:00
parent 4468dbd02f
commit dbcdafb1a0
2 changed files with 7 additions and 3 deletions

View File

@ -32,3 +32,7 @@ typedef struct SymbolTable{
int Line_Number;
int Column_Number;
}SymbolTable;
TableNode* CreateEntry(SymbolTable* table, char* typeOf, char* id, Value* value, int StringLength);
SymbolTable* CreateScope(SymbolTable* ParentScope, int Line, int Column);