1
2
3VIEWLOTRS(3) MBK LOGICAL FUNCTIONS VIEWLOTRS(3)
4
5
6
8 viewlotrs - display elements of a lotrs_list
9
11 #include "mlo.h"
12 void viewlotrs(pttrs)
13 lotrs_list ∗pttrs;
14
16 pttrs Pointer to the lotrs to be scanned
17
19 viewlotrs scans all the primary elements of the lotrs_list loaded in
20 ram, and displays a textual output of the data strcuture contents.
21 Its use is mostly for debugging purposes, and educational ones, since
22 the output is quite verbose, even if very easy to understand.
23
25 #include <stdio.h>
26 #include "mlo.h"
27 void view_trs(ptfig)
28 lofig_list ∗ptfig;
29 {
30 lotrs_list ∗trs;
31 for (trs = ptfig->LOTRS; trs; trs = trs->NEXT)
32 viewlotrs(trs);
33 }
34
36 mbk(1), lotrs(3), viewlo(3), viewlofig(3), viewlotrs(3), viewlosig(3),
37 viewloinscon(3), viewlofigcon(3).
38
39
40
41
42
43
44ASIM/LIP6 October 1, 1997 VIEWLOTRS(3)