1 /*
2  *  LIST.H
3  *
4  *  Written on 10-Jul-94 by John Dennis and released to the public domain.
5  */
6 
7 #ifndef __LIST_H__
8 #define __LIST_H__
9 
10 typedef struct _mlhead
11 {
12     int sel;
13     unsigned long msgnum;
14     unsigned long umsgid;
15     char to_name[37];
16     int to_net;
17     int to_node;
18     char fr_name[37];
19     int fr_net;
20     int fr_node;
21     char subj[73];
22     int times_read;
23 }
24 MLHEAD;
25 
26 int do_list(void);
27 
28 #endif
29