xref: /freebsd/contrib/sendmail/include/sm/sendmail.h (revision d0cef73d40a409e3116f095b83633b1364e95741)
1d0cef73dSGregory Neil Shapiro /*
2d0cef73dSGregory Neil Shapiro  * Copyright (c) 2006 Sendmail, Inc. and its suppliers.
3d0cef73dSGregory Neil Shapiro  *	All rights reserved.
4d0cef73dSGregory Neil Shapiro  *
5d0cef73dSGregory Neil Shapiro  * By using this file, you agree to the terms and conditions set
6d0cef73dSGregory Neil Shapiro  * forth in the LICENSE file which can be found at the top level of
7d0cef73dSGregory Neil Shapiro  * the sendmail distribution.
8d0cef73dSGregory Neil Shapiro  */
9d0cef73dSGregory Neil Shapiro 
10d0cef73dSGregory Neil Shapiro /*
11d0cef73dSGregory Neil Shapiro **  SENDMAIL.H -- MTA-specific definitions for sendmail.
12d0cef73dSGregory Neil Shapiro */
13d0cef73dSGregory Neil Shapiro 
14d0cef73dSGregory Neil Shapiro #ifndef _SM_SENDMAIL_H
15d0cef73dSGregory Neil Shapiro # define _SM_SENDMAIL_H 1
16d0cef73dSGregory Neil Shapiro 
17d0cef73dSGregory Neil Shapiro /* "out of band" indicator */
18d0cef73dSGregory Neil Shapiro #define METAQUOTE	((unsigned char)0377)	/* quotes the next octet */
19d0cef73dSGregory Neil Shapiro 
20d0cef73dSGregory Neil Shapiro extern int	dequote_internal_chars __P((char *, char *, int));
21d0cef73dSGregory Neil Shapiro extern char	*quote_internal_chars __P((char *, char *, int *));
22d0cef73dSGregory Neil Shapiro extern char	*str2prt __P((char *));
23d0cef73dSGregory Neil Shapiro 
24d0cef73dSGregory Neil Shapiro #endif /* ! _SM_SENDMAIL_H */
25