1VIEWLOINSCON(3) Mbk Logical Functions VIEWLOINSCON(3)
2
3
4
6 viewloinscon - display elements of a locon_list attached to an instance
7
9 #include "mlo.h"
10 void viewloinscon(ptcon)
11 locon_list ∗ptcon;
12
14 ptcon Pointer to the locon to be scanned
15
17 viewloinscon 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_inscon(ptins)
26 loins_list ∗ptins;
27 {
28 locon_list ∗inscon;
29 for (inscon = ptins->LOCON; inscon; inscon = inscon->NEXT)
30 viewloinscon(inscon);
31 }
32
34 mbk(1), locon(3), loins(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 VIEWLOINSCON(3)