No empty .Rs/.Re
[netbsd-mini2440.git] / external / ibm-public / postfix / dist / src / global / fold_addr.h
blobec0377fbb3641713440e99dc49c438d045457ef3
1 /* $NetBSD$ */
3 #ifndef _FOLD_ADDR_H_INCLUDED_
4 #define _FOLD_ADDR_H_INCLUDED_
6 /*++
7 /* NAME
8 /* fold_addr 3h
9 /* SUMMARY
10 /* address case folding
11 /* SYNOPSIS
12 /* #include <fold_addr.h>
13 /* DESCRIPTION
14 /* .nf
17 * External interface.
19 #define FOLD_ADDR_USER (1<<0)
20 #define FOLD_ADDR_HOST (1<<1)
22 #define FOLD_ADDR_ALL (FOLD_ADDR_USER | FOLD_ADDR_HOST)
24 extern char *fold_addr(char *, int);
26 /* LICENSE
27 /* .ad
28 /* .fi
29 /* The Secure Mailer license must be distributed with this software.
30 /* AUTHOR(S)
31 /* Wietse Venema
32 /* IBM T.J. Watson Research
33 /* P.O. Box 704
34 /* Yorktown Heights, NY 10598, USA
35 /*--*/
37 #endif