table of contents
DELLOSIG(3) | MBK LOGICAL FUNCTIONS | DELLOSIG(3) |
NAME¶
dellosig - delete a logical signal
ORIGIN¶
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Université Pierre et Marie CURIE, in Paris, France.
Web : http://asim.lip6.fr/recherche/alliance/
E-mail : alliance-users@asim.lip6.fr
SYNOPSYS¶
#include "mlo.h" int dellosig(ptfig, index) lofig_list ∗ptfig; long index;
PARAMETERS¶
DESCRIPTION¶
dellosig delete the signal that has index as INDEX in the figure pointed to by ptfig. The list consistency is maintainded, and the space freed.
RETURN VALUE¶
dellosig returns 1 if the signal has been deleted, 0 if the signal index does not exists in the list.
EXAMPLE¶
#include "mlo.h" char ∗was_existing(ptfig, index) lofig_list ∗ptfig; long index; {
return dellosig(ptfig, index) ? "you just killed it!"
: "wasn't here anyway"; }
SEE ALSO¶
mbk(1), lofig(3), losig(3), addlosig(3), getlosig(3).
BUG REPORT¶
This tool is under development at the ASIM department of
the LIP6 laboratory.
We need your feedback to improve documentation and tools.
October 1, 1997 | ASIM/LIP6 |