1VIEWLOFIGCON(3) MBK LOGICAL FUNCTIONS VIEWLOFIGCON(3)
2
3
4
6 viewlofigcon - display elements of a locon_list attached to a figure
7
9 #include "mlo.h"
10 void viewlofigcon(ptcon)
11 locon_list ∗ptcon;
12
14 ptcon Pointer to the locon to be scanned
15
17 viewlofigcon scans all the primary elements of the locon_list loaded in
18 ram, and displays a textual output of the data strcuture contents.
19 Its use is mostly for debugging purposes, and educational ones, since
20 the output is quite verbose, even if very easy to understand.
21
23 #include <stdio.h>
24 #include "mlo.h"
25 void view_figcon(ptfig)
26 lofig_list ∗ptfig;
27 {
28 locon_list ∗figcon;
29 for (figcon = ptfig->LOCON; figcon; figcon = figcon->NEXT)
30 viewlofigcon(figcon);
31 }
32
34 mbk(1), locon(3), lofig(3), viewlo(3), viewlofig(3), viewlotrs(3),
35 viewlosig(3), viewloinscon(3), viewlofigcon(3).
36
37
38
39
40
41
42ASIM/LIP6 October 1, 1997 VIEWLOFIGCON(3)