File: typedef.h

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 (121 lines) | stat: -rw-r--r-- 2,460 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/* typedef.h
 */

/* some important types */

typedef int		NG_NUM;		/* newsgroup number */
typedef long		ART_NUM;	/* article number */
typedef long		ART_UNREAD;	/* could be short to save space */
typedef long		ART_POS;	/* char position in article file */
typedef int		ART_LINE;	/* line position in article file */
typedef long		ACT_POS;	/* char position in active file */
typedef unsigned int	MEM_SIZE;	/* for passing to malloc */
typedef unsigned char	Uchar;		/* more space-efficient */

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

/* addng.h */

typedef struct addgroup ADDGROUP;

/* cache.h */

typedef struct subject SUBJECT;
typedef struct article ARTICLE;

/* color.ih */

typedef struct color_obj COLOR_OBJ;

/* datasrc.h */

typedef struct srcfile SRCFILE;
typedef struct datasrc DATASRC;

/* hash.h */

typedef struct hashdatum HASHDATUM;

/* hash.ih */

typedef struct hashent HASHENT;
typedef struct hashtable HASHTABLE;

/* head.h */

typedef struct headtype HEADTYPE;
typedef struct user_headtype USER_HEADTYPE;

/* list.h */

typedef struct listnode LISTNODE;
typedef struct list LIST;

/* mime.h */

typedef struct hblk HBLK;
typedef struct mime_sect MIME_SECT;
typedef struct html_tags HTML_TAGS;
typedef struct mimecap_entry MIMECAP_ENTRY;

/* ngdata.h */

typedef struct ngdata NGDATA;

/* nntpclient.h */

typedef struct nntplink NNTPLINK;

/* rcstuff.h */

typedef struct newsrc NEWSRC;
typedef struct multirc MULTIRC;

/* rt-mt.ih */

typedef struct packed_root PACKED_ROOT;
typedef struct packed_article PACKED_ARTICLE;
typedef struct total TOTAL;
typedef struct bmap BMAP;

/* rt-page.h */

typedef union sel_union SEL_UNION;
typedef struct sel_item SEL_ITEM;

/* scan.h */

typedef struct page_ent PAGE_ENT;
typedef struct scontext SCONTEXT;

/* scanart.h */

typedef struct sa_entrydata SA_ENTRYDATA;

/* scorefile.h */

typedef struct sf_entry SF_ENTRY;
typedef struct sf_file SF_FILE;

/* search.h */

typedef struct compex COMPEX;

/* term.ih */

typedef struct keymap KEYMAP;

/* univ.h */

typedef struct univ_groupmask_data UNIV_GROUPMASK_DATA;
typedef struct univ_configfile_data UNIV_CONFIGFILE_DATA;
typedef struct univ_virt_data UNIV_VIRT_DATA;
typedef struct univ_virt_group UNIV_VIRT_GROUP;
typedef struct univ_newsgroup UNIV_NEWSGROUP;
typedef struct univ_textfile UNIV_TEXTFILE;
typedef union univ_data UNIV_DATA;
typedef struct univ_item UNIV_ITEM;

/* util.h */

typedef struct ini_words INI_WORDS;