-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.h
56 lines (40 loc) · 1.57 KB
/
header.h
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
#ifndef _HAD_HEADER_H
#define _HAD_HEADER_H
/*
$NiH: header.h,v 1.7 2002/04/10 16:23:28 wiz Exp $
header.h -- RFC822 header parsing
Copyright (C) 2002 Dieter Baron and Thomas Klausner
This file is part of cg, a program to assemble and decode binary Usenet
postings. The authors can be contacted at <[email protected]>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "output.h"
#include "stream.h"
#include "symbol.h"
struct header {
struct header *next;
symbol type;
char *value;
};
#define HDR_SUBJECT hdr_sym[0]
#define HDR_MIME_VERSION hdr_sym[1]
#define HDR_CONTENT_TYPE hdr_sym[2]
#define HDR_CONTENT_TRENC hdr_sym[3]
#define HDR_CONTENT_DISP hdr_sym[4]
extern symbol hdr_sym[];
struct header *header_read(stream *stm, out_state *out);
void header_free(struct header *h);
char *header_get(struct header *header, symbol field);
void header_init(void);
int header_print(FILE *f, struct header *header);
#endif /* header.h */