|
NAMEaddphfig - create a new physical cell model See the file man1/alc_origin.1. SYNOPSIS#include "mph.h" phfig_list ∗addphfig(figname) char ∗figname; PARAMETER
DESCRIPTIONaddphfig creates a new figure called figname and
adds it to the list of figure in memory. The new figure is added in front of
the list, and becomes itself the list head. No check is performed to see if
a figure with the figname exists on disk. If it is the case, the
preexisting file will be erased while saving.
RETURN VALUEaddphfig returns a pointer to the newly created figure. ERRORS"∗∗∗ mbk error ∗∗∗ illegal addphfig figure figname already exists" There is already a figure called figname in
memory, so it's impossible to give this name to a cell to be created.
EXAMPLE
#include "mph.h"
phfig_list ∗get_the_fig(name)
char ∗name;
{
phfig_list ∗pt, ∗fill_fig(/∗ phfig_list ∗ ∗/);
/∗ scan figure list ∗/
for (pt = HEAD_PHFIG; pt; pt = pt->NEXT)
if (!strcmp(pt->NAME, figname))
break;
return pt ? pt : fill_fig(addphfig(figname));
}
SEE ALSOmbk(1), phfig(3), getphfig(3), delphfig(3), loadphfig(3), savephfig(3), flattenphfig(3), rflattenphfig(3). See the file man1/alc_bug_report.1.
|