xref: /titanic_51/usr/src/cmd/sendmail/include/sm/sendmail.h (revision 058561cbaa119a6f2659bc27ef343e1b47266bb2)
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 #pragma ident	"%Z%%M%	%I%	%E% SMI"
11*058561cbSjbeck 
12*058561cbSjbeck /*
13*058561cbSjbeck **  SENDMAIL.H -- MTA-specific definitions for sendmail.
14*058561cbSjbeck */
15*058561cbSjbeck 
16*058561cbSjbeck #ifndef _SM_SENDMAIL_H
17*058561cbSjbeck # define _SM_SENDMAIL_H 1
18*058561cbSjbeck 
19*058561cbSjbeck /* "out of band" indicator */
20*058561cbSjbeck #define METAQUOTE	((unsigned char)0377)	/* quotes the next octet */
21*058561cbSjbeck 
22*058561cbSjbeck extern int	dequote_internal_chars __P((char *, char *, int));
23*058561cbSjbeck extern char	*quote_internal_chars __P((char *, char *, int *));
24*058561cbSjbeck extern char	*str2prt __P((char *));
25*058561cbSjbeck 
26*058561cbSjbeck #endif /* ! _SM_SENDMAIL_H */
27