Postfix3.3.1
quote_821_local.h
[詳解]
1 /*++
2 /* NAME
3 /* quote_821_local 3h
4 /* SUMMARY
5 /* quote rfc 821 local part
6 /* SYNOPSIS
7 /* #include "quote_821_local.h"
8 /* DESCRIPTION
9 /* .nf
10 
11  /*
12  * Utility library.
13  */
14 #include <vstring.h>
15 
16  /*
17  * Global library.
18  */
19 #include <quote_flags.h>
20 
21  /*
22  * External interface.
23  */
24 extern VSTRING *quote_821_local_flags(VSTRING *, const char *, int);
25 #define quote_821_local(dst, src) \
26  quote_821_local_flags((dst), (src), QUOTE_FLAG_8BITCLEAN)
27 
28 /* LICENSE
29 /* .ad
30 /* .fi
31 /* The Secure Mailer license must be distributed with this software.
32 /* AUTHOR(S)
33 /* Wietse Venema
34 /* IBM T.J. Watson Research
35 /* P.O. Box 704
36 /* Yorktown Heights, NY 10598, USA
37 /*--*/
VSTRING * quote_821_local_flags(VSTRING *, const char *, int)