blob: a9a4dea0a4e6534ff4cf8f64f840fdedf13d3404 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#ifndef _MAIL_ADDR_FORM_H_INCLUDED_
#define _MAIL_ADDR_FORM_H_INCLUDED_
/*++
/* NAME
/* mail_addr_form 3h
/* SUMMARY
/* mail address formats
/* SYNOPSIS
/* #include <mail_addr_form.h>
/* DESCRIPTION
/* .nf
/*
* External interface.
*/
#define MA_FORM_INTERNAL 1 /* unquoted form */
#define MA_FORM_EXTERNAL 2 /* quoted form */
#define MA_FORM_EXTERNAL_FIRST 3 /* quoted form, then unquoted */
#define MA_FORM_INTERNAL_FIRST 4 /* unquoted form, then quoted */
extern int mail_addr_form_from_string(const char *);
extern const char *mail_addr_form_to_string(int);
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* Google, Inc.
/* 111 8th Avenue
/* New York, NY 10011, USA
/*--*/
#endif
|