dellosig

Langue: en

Version: October 1, 1997 (fedora - 05/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

dellosig - delete a logical signal
man2html: unable to open or read file man1/alc_origin.1

SYNOPSYS

 #include "mlo.h"
 int dellosig(ptfig, index)
 lofig_list *ptfig;
 long index;
 

PARAMETERS

ptfig
Pointer to the figure in which the signal should be deleted
index
Index of the signal to be deleted.

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).
man2html: unable to open or read file man1/alc_bug_report.1