File: rt-ov.ih

package info (click to toggle)
trn4 4.0-test77-18
  • links: PTS, VCS
  • area: non-free
  • in suites: sid, trixie
  • size: 4,016 kB
  • sloc: ansic: 48,332; sh: 6,795; tcl: 1,696; yacc: 662; perl: 108; makefile: 26
file content (27 lines) | stat: -rw-r--r-- 668 bytes parent folder | download | duplicates (11)
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
/* rt-ov.ih
 */
/* This software is copyrighted as detailed in the LICENSE file. */

/* The usual order for the overview data fields. */
#define OV_NUM  	0
#define OV_SUBJ 	1
#define OV_FROM 	2
#define OV_DATE 	3
#define OV_MSGID	4
#define OV_REFS 	5
#define OV_BYTES	6
#define OV_LINES	7
#define OV_XREF 	8

/* How many overview lines to read with one NNTP call */
#define OV_CHUNK_SIZE	40

static int hdrnum[] = {
    0, SUBJ_LINE, FROM_LINE, DATE_LINE, MSGID_LINE,
    REFS_LINE, BYTES_LINE, LINES_LINE, XREF_LINE
};

/* DON'T EDIT BELOW THIS LINE OR YOUR CHANGES WILL BE LOST! */

static void ov_parse _((char*,ART_NUM,bool_int));
static char* ov_name _((char*));