xref: /netbsd-src/external/ibm-public/postfix/dist/src/global/quote_821_local.h (revision 41fbaed053f8fbfdf9d2a4ee0a7386a3c83f8505)
1 /*	$NetBSD: quote_821_local.h,v 1.1.1.1 2009/06/23 10:08:47 tron Exp $	*/
2 
3 /*++
4 /* NAME
5 /*	quote_821_local 3h
6 /* SUMMARY
7 /*	quote rfc 821 local part
8 /* SYNOPSIS
9 /*	#include "quote_821_local.h"
10 /* DESCRIPTION
11 /* .nf
12 
13  /*
14   * Utility library.
15   */
16 #include <vstring.h>
17 
18  /*
19   * Global library.
20   */
21 #include <quote_flags.h>
22 
23  /*
24   * External interface.
25   */
26 extern VSTRING *quote_821_local_flags(VSTRING *, const char *, int);
27 #define quote_821_local(dst, src) \
28 	quote_821_local_flags((dst), (src), QUOTE_FLAG_8BITCLEAN)
29 
30 /* LICENSE
31 /* .ad
32 /* .fi
33 /*	The Secure Mailer license must be distributed with this software.
34 /* AUTHOR(S)
35 /*	Wietse Venema
36 /*	IBM T.J. Watson Research
37 /*	P.O. Box 704
38 /*	Yorktown Heights, NY 10598, USA
39 /*--*/
40