freelomodel(3) free a lofig_list for temporary models

SYNOPSYS

#include "mlo.h"
void freelomodel(ptmodel)
lofig_list *ptmodel;

PARAMETER

ptmodel
Pointer to the model list to be freed

DESCRIPTION

freelomodel free the lofig_list pointed to by ptmodel. All the elements of the list are given back to the system.

EXAMPLE

#include "mlo.h"
void end_of_parse() /* erase model list */
{
   freelomodel(MODEL);
}