1 #ifndef __SORTAREA_H__
2 #define __SORTAREA_H__
3 
4 #include <jam.h>
5 #include <squish.h>
6 #include <time.h>
7 
8 typedef struct _jamsort {
9    JAMHDR    Hdr;
10    JAMIDXREC Idx;
11    struct    _jamsort *prev;
12    struct    _jamsort *next;
13    } JAMSORT, *JAMSORTptr;
14 
15 typedef struct _sqsort {
16    SQIDX    sqidx;
17    XMSG     xmsg;
18    time_t   msgtime;
19    struct   _sqsort *prev;
20    struct   _sqsort *next;
21    } SQSORT, *SQSORTptr;
22 
23 void sortAreas(s_fidoconfig *config);
24 
25 #endif
26