/* * file: hw7-delete.c * ------------------ * this file contains the code for one function from the * hw7-symtab interface: DeleteKeyFromSymbolTable(). */ /* as is this does not delete anything. the retrun value * is as if the key did not occur in the table, even if it does. * fix it and add comments as necessary. */ void* DeleteKeyFromSymbolTable(symtabADT table, string key) { return(UNDEFINED); }