Postfix3.3.1
quote_822_local.h
[詳解]
1 #ifndef _QUOTE_822_H_INCLUDED_
2 #define _QUOTE_822_H_INCLUDED_
3 
4 /*++
5 /* NAME
6 /* quote_822_local 3h
7 /* SUMMARY
8 /* quote local part of mailbox
9 /* SYNOPSIS
10 /* #include "quote_822_local.h"
11 /* DESCRIPTION
12 /* .nf
13 
14  /*
15  * Utility library.
16  */
17 #include <vstring.h>
18 
19  /*
20  * Global library.
21  */
22 #include <quote_flags.h>
23 
24  /*
25  * External interface.
26  */
27 extern VSTRING *quote_822_local_flags(VSTRING *, const char *, int);
28 extern VSTRING *unquote_822_local(VSTRING *, const char *);
29 #define quote_822_local(dst, src) \
30  quote_822_local_flags((dst), (src), QUOTE_FLAG_DEFAULT)
31 
32 /* LICENSE
33 /* .ad
34 /* .fi
35 /* The Secure Mailer license must be distributed with this software.
36 /* AUTHOR(S)
37 /* Wietse Venema
38 /* IBM T.J. Watson Research
39 /* P.O. Box 704
40 /* Yorktown Heights, NY 10598, USA
41 /*
42 /* Wietse Venema
43 /* Google, Inc.
44 /* 111 8th Avenue
45 /* New York, NY 10011, USA
46 /*--*/
47 
48 #endif
VSTRING * unquote_822_local(VSTRING *, const char *)
VSTRING * quote_822_local_flags(VSTRING *, const char *, int)