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