1 /* $NetBSD: quote_822_local.h,v 1.2 2020/03/18 19:05:16 christos Exp $ */ 2 3 #ifndef _QUOTE_822_H_INCLUDED_ 4 #define _QUOTE_822_H_INCLUDED_ 5 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 15 16 /* 17 * Utility library. 18 */ 19 #include <vstring.h> 20 21 /* 22 * Global library. 23 */ 24 #include <quote_flags.h> 25 26 /* 27 * External interface. 28 */ 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_DEFAULT) 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 /* Wietse Venema 45 /* Google, Inc. 46 /* 111 8th Avenue 47 /* New York, NY 10011, USA 48 /*--*/ 49 50 #endif 51