1VIEWLOINS(3) MBK LOGICAL FUNCTIONS VIEWLOINS(3)
2
3
4
6 viewloins - display elements of a loins_list
7
9 #include "mlo.h"
10 void viewloins(pt)
11 loins_list ∗pt;
12
14 pt Pointer to the loins to be scanned
15
17 viewloins scans all the primary elements of the loins_list pointed to
18 by pt, and displays a textual output of the data strcuture contents.
19 The LOCON field is scanned, and its contents displayed.
20 Its use is mostly for debugging purposes, and educational ones, since
21 the output is quite verbose, even if very easy to understand.
22
24 #include <stdio.h>
25 #include "mlo.h"
26 void view_ins(ptfig)
27 lofig_list ∗ptfig;
28 {
29 loins_list ∗ins;
30 for (ins = ptfig->LOINS; ins; ins = ins->NEXT)
31 viewloins(ins);
32 }
33
35 mbk(1), loins(3), viewlo(3), viewlofig(3), viewlotrs(3), viewlosig(3),
36 viewloinscon(3), viewloinscon(3).
37
38
39
40
41
42
43ASIM/LIP6 October 1, 1997 VIEWLOINS(3)