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