1GETLOCON(3) MBK LOGICAL FUNCTIONS GETLOCON(3)
2
3
4
6 getlocon - retrieve a logical connector
7
9 #include "mlo.h"
10 locon_list ∗getlocon(ptfig, name)
11 lofig_list ∗ptfig;
12 char ∗name;
13
15 ptfig Pointer to the figure in which the connector should
16 be seeked
17
18 name Name of the connector
19
21 getlocon looks in the list of connectors of the logical model pointed
22 to by ptfig for a connector identified by its name, since it should be
23 unique at a given hierachical level.
24
26 getlocon returns a pointer to the given connector.
27
29 "∗∗∗ mbk error ∗∗∗ getlocon impossible : connector name doesn't exist
30 in figure ptfig->NAME"
31 No connector matches the name.
32
34 #include "mlo.h"
35 locon_list ∗exist(figname, conname)
36 char ∗figname, ∗conname;
37 {
38 return getlocon(getlofig(figname), conname);
39 }
40
42 mbk(1), lofig(3), locon(3), addlocon(3), dellocon(3).
43
44
45
46
47
48
49ASIM/LIP6 October 1, 1997 GETLOCON(3)