1 #ifndef _SPLIT_ADDR_H_INCLUDED_
2 #define _SPLIT_ADDR_H_INCLUDED_
3 
4 /*++
5 /* NAME
6 /*	split_addr 3h
7 /* SUMMARY
8 /*	recipient localpart address splitter
9 /* SYNOPSIS
10 /*	#include <split_addr.h>
11 /* DESCRIPTION
12 /* .nf
13 
14  /* External interface. */
15 
16 extern char *split_addr_internal(char *, const char *);
17 
18  /* Legacy API. */
19 
20 #define split_addr	split_addr_internal
21 
22 /* LICENSE
23 /* .ad
24 /* .fi
25 /*	The Secure Mailer license must be distributed with this software.
26 /* AUTHOR(S)
27 /*	Wietse Venema
28 /*	IBM T.J. Watson Research
29 /*	P.O. Box 704
30 /*	Yorktown Heights, NY 10598, USA
31 /*
32 /*	Wietse Venema
33 /*	Google, Inc.
34 /*	111 8th Avenue
35 /*	New York, NY 10011, USA
36 /*--*/
37 
38 #endif
39