1168515Sgshapiro/*
2261194Sgshapiro * Copyright (c) 2006 Proofpoint, Inc. and its suppliers.
3168515Sgshapiro *	All rights reserved.
4168515Sgshapiro *
5168515Sgshapiro * By using this file, you agree to the terms and conditions set
6168515Sgshapiro * forth in the LICENSE file which can be found at the top level of
7168515Sgshapiro * the sendmail distribution.
8168515Sgshapiro */
9168515Sgshapiro
10168515Sgshapiro/*
11168515Sgshapiro**  SENDMAIL.H -- MTA-specific definitions for sendmail.
12168515Sgshapiro*/
13168515Sgshapiro
14168515Sgshapiro#ifndef _SM_SENDMAIL_H
15168515Sgshapiro# define _SM_SENDMAIL_H 1
16168515Sgshapiro
17168515Sgshapiro/* "out of band" indicator */
18168515Sgshapiro#define METAQUOTE	((unsigned char)0377)	/* quotes the next octet */
19168515Sgshapiro
20168515Sgshapiroextern int	dequote_internal_chars __P((char *, char *, int));
21168515Sgshapiroextern char	*quote_internal_chars __P((char *, char *, int *));
22168515Sgshapiroextern char	*str2prt __P((char *));
23168515Sgshapiro
24168515Sgshapiro#endif /* ! _SM_SENDMAIL_H */
25