delivered_hdr.h revision 1.1.1.1
1/*	$NetBSD: delivered_hdr.h,v 1.1.1.1 2009/06/23 10:08:45 tron Exp $	*/
2
3#ifndef _DELIVERED_HDR_H_INCLUDED_
4#define _DELIVERED_HDR_H_INCLUDED_
5
6/*++
7/* NAME
8/*	delivered_hdr 3h
9/* SUMMARY
10/*	process Delivered-To: headers
11/* SYNOPSIS
12/*	#include <delivered_hdr.h>
13/* DESCRIPTION
14/* .nf
15
16 /*
17  * Utility library.
18  */
19#include <vstream.h>
20
21 /*
22  * Global library.
23  */
24#include <fold_addr.h>
25
26 /*
27  * External interface.
28  */
29typedef struct DELIVERED_HDR_INFO DELIVERED_HDR_INFO;
30extern DELIVERED_HDR_INFO *delivered_hdr_init(VSTREAM *, off_t, int);
31extern int delivered_hdr_find(DELIVERED_HDR_INFO *, const char *);
32extern void delivered_hdr_free(DELIVERED_HDR_INFO *);
33
34/* LICENSE
35/* .ad
36/* .fi
37/*	The Secure Mailer license must be distributed with this software.
38/* AUTHOR(S)
39/*	Wietse Venema
40/*	IBM T.J. Watson Research
41/*	P.O. Box 704
42/*	Yorktown Heights, NY 10598, USA
43/*--*/
44
45#endif
46