* This routine frees all of the memory allocated to the * specified list of prototypes. The clusters which are * pointed to by the prototypes are not freed. * @param ProtoList pointer to list of prototypes to be freed * @return None * @note Exceptions: None * @note History: 6/6/89, DSJ, Created. */
| 572 | * @note History: 6/6/89, DSJ, Created. |
| 573 | */ |
| 574 | void FreeProtoList(LIST *ProtoList) { |
| 575 | destroy_nodes(*ProtoList, FreePrototype); |
| 576 | } // FreeProtoList |
| 577 | |
| 578 | /** |
| 579 | * This routine deallocates the memory consumed by the specified |
no test coverage detected