1DELLOCON(3) MBK LOGICAL FUNCTIONS DELLOCON(3)
2
3
4
6 dellocon - delete a logical connector
7
9 #include "mlo.h"
10 int dellocon(ptfig, name)
11 lofig_list ∗ptfig;
12 char ∗name;
13
15 ptfig Pointer to the figure in which the connector should
16 be deleted
17
18 name Name of the connector to be deleted.
19
21 dellocon deletes the connector called name in the figure pointed to by
22 ptfig. The list consistency is maintained, and the space freed.
23
25 dellocon returns 1 if the connector has been deleted, 0 if no such con‐
26 nector exists in the list.
27
29 #include "mlo.h"
30 char ∗was_existing(p, s)
31 lofig_list ∗p;
32 char ∗s;
33 {
34 return dellocon(p, s) ? "you just killed it!0
35 : "wasn't here anyway0;
36 }
37
39 mbk(1), lofig(3), locon(3), addlocon(3), getlocon(3).
40
41
42
43
44
45
46ASIM/LIP6 October 1, 1997 DELLOCON(3)