voidDestroySymTab(structSymTab*ATable); SymTab.h /*EnterName:enteraNameintoasymboltable.Passesbackanargument containinganentryreferenceforthename.Returntrueifthe namewasnotalreadyinthesymboltable,otherwisereturn false.EnterNamemustallocatespacefortheNameandcopy ...
structSymTab{intSize; structSymEntry**Contents; }; /*TheName/Attributesassociationstructureusedinthesymboltables linkedlists. */ structSymEntry{char*Name; void*Attributes; structSymEntry*Next; }; SymTab.h /*CreateSymTab:createandreturnareferencetoasymboltableof ...