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