1VIEWLOSIG(3) MBK LOGICAL FUNCTIONS VIEWLOSIG(3)
2
3
4
6 viewlosig - display elements of a losig_list
7
9 #include "mlo.h"
10 void viewlosig(ptsig)
11 losig_list ∗ptsig;
12
14 ptsig Pointer to the losig to be scanned
15
17 viewlosig scans all the primary elements of the losig_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_sig(ptfig)
26 lofig_list ∗ptfig;
27 {
28 losig_list ∗sig;
29 for (sig = ptfig->LOSIG; sig; sig = sig->NEXT)
30 viewlosig(sig);
31 }
32
34 mbk(1), losig(3), viewlo(3), viewlofig(3), viewlotrs(3), viewlosig(3),
35 viewloinscon(3), viewlofigcon(3).
36
37
38
39
40
41
42ASIM/LIP6 October 1, 1997 VIEWLOSIG(3)