summaryrefslogtreecommitdiffstats
path: root/rfc2045/headercheck.c
blob: 5bead04ff17f5420f0ff611a0fe39063912b9ae6 (plain)
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
#include "rfc2045_config.h"
#include <stdio.h>
#include <stdlib.h>
#include "rfc2045.h"

void rfc2045_error(const char *s)
{
	printf("%s\n", s);
	exit(0);
}

int main(int argc, char **argv)
{
	struct rfc2045src *src;
	struct rfc2045 *rfcp;
	struct rfc2045headerinfo *hi;
	char *h, *v;

	if (argc < 3)
		return (0);

	rfcp=rfc2045_fromfd(0);

	if (!rfcp)
		return (0);

	if (argv[2][0])
		rfcp=rfc2045_find(rfcp, argv[2]);

	src=rfc2045src_init_fd(0);

	if (!src)
		return (0);

	hi=rfc2045header_start(src, rfcp);

	if (!hi)
		return (0);

	while (rfc2045header_get(hi, &h, &v, atoi(argv[1])) == 0)
	{
		if (h == NULL)
			break;
		printf("Header: %s\n", h);
		printf("Value: %s\n", v);
	}
	return (0);
}