From d6033e9168ea4de0dea1d3f0fbafcc51179f9df6 Mon Sep 17 00:00:00 2001 From: Meyer Simon Date: Sun, 23 Feb 2025 12:21:28 -0500 Subject: [PATCH] Removed comments to make symbole table easyer to read. --- symbol_table.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/symbol_table.c b/symbol_table.c index 52ecf2b..e87ebd8 100644 --- a/symbol_table.c +++ b/symbol_table.c @@ -1,14 +1,7 @@ -//Defining a symbol table -//Using a Linked List Structure. Head of linked List points to parent scope (if one exists) -//Tail of Linked List points to a Linked List of all the child scopes -//T #include #include #include -//Tail of Linked List points to a List of child scopes - - #include "symbol_table.h" SymbolTable* CreateScope(SymbolTable* ParentScope, int Line, int Column){