Sync usage with man page.
[netbsd-mini2440.git] / external / ibm-public / postfix / dist / src / global / quote_822_local.h
blob708245e39e35a280bb41f34548101dfadb34f8bc
1 /* $NetBSD$ */
3 #ifndef _QUOTE_822_H_INCLUDED_
4 #define _QUOTE_822_H_INCLUDED_
6 /*++
7 /* NAME
8 /* quote_822_local 3h
9 /* SUMMARY
10 /* quote local part of mailbox
11 /* SYNOPSIS
12 /* #include "quote_822_local.h"
13 /* DESCRIPTION
14 /* .nf
17 * Utility library.
19 #include <vstring.h>
22 * Global library.
24 #include <quote_flags.h>
27 * External interface.
29 extern VSTRING *quote_822_local_flags(VSTRING *, const char *, int);
30 extern VSTRING *unquote_822_local(VSTRING *, const char *);
31 #define quote_822_local(dst, src) \
32 quote_822_local_flags((dst), (src), QUOTE_FLAG_8BITCLEAN)
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 /*--*/
45 #endif