1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
/* rthread.ih
*/
/* This software is copyrighted as detailed in the LICENSE file. */
/* DON'T EDIT BELOW THIS LINE OR YOUR CHANGES WILL BE LOST! */
static int cleanup_msgid_hash _((int,HASHDATUM*,int));
static ARTICLE* first_sib _((ARTICLE*,int));
static ARTICLE* last_sib _((ARTICLE*,int,ARTICLE*));
static int subjorder_subject _((SUBJECT**,SUBJECT**));
static int subjorder_date _((SUBJECT**,SUBJECT**));
static int subjorder_count _((SUBJECT**,SUBJECT**));
static int subjorder_lines _((SUBJECT**,SUBJECT**));
static int subject_score_high _((SUBJECT*));
static int subjorder_score _((SUBJECT**,SUBJECT**));
static int threadorder_subject _((SUBJECT**,SUBJECT**));
static int threadorder_date _((SUBJECT**,SUBJECT**));
static int threadorder_count _((SUBJECT**,SUBJECT**));
static int threadorder_lines _((SUBJECT**,SUBJECT**));
#ifdef SCORE
static int thread_score_high _((SUBJECT*));
#endif
static int threadorder_score _((SUBJECT**,SUBJECT**));
static int artorder_date _((ARTICLE**,ARTICLE**));
static int artorder_subject _((ARTICLE**,ARTICLE**));
static int artorder_author _((ARTICLE**,ARTICLE**));
static int artorder_number _((ARTICLE**,ARTICLE**));
static int artorder_groups _((ARTICLE**,ARTICLE**));
static int artorder_lines _((ARTICLE**,ARTICLE**));
#ifdef SCORE
static int artorder_score _((ARTICLE**,ARTICLE**));
#endif
static void build_artptrs _((void));
|