1
2
3VIEWLORES(3) MBK LOGICAL FUNCTIONS VIEWLORES(3)
4
5
6
8 viewlores - display elements of a lores_list
9
11 #include "mlo.h"
12
13 void viewlores(ptres)
14 lores_list ∗ptres ;
15
17 ptres Pointer to the lores to be scanned
18
20 viewlores scans all the primary elements of the lores_list loaded in
21 ram, and displays a textual output of the data strcuture contents.
22 Its use is mostly for debugging purposes, and educational ones, since
23 the output is quite verbose, even if very easy to understand.
24
26 #include <stdio.h>
27 #include "mlo.h"
28
29 void view_res(lofig_list ∗ptfig)
30 {
31 lores_list ∗res = NULL ;
32
33 for(res = ptfig -> LORES ; res != NULL ; res = res -> NEXT)
34 {
35 viewlores(res) ;
36 }
37 }
38
40 mbk(1), lores(3), viewlo(3), viewlofig(3), viewlores(3), viewlosig(3),
41 viewloinscon(3), viewlofigcon(3).
42
43
44
45
46
47
48ASIM/LIP6 August 14, 2002 VIEWLORES(3)