blob: 98d3ddd8a33d5367254a781ad9cd22f5e65b45fc (
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
|
#ifndef _HFROM_FORMAT_INCLUDED_
#define _HFROM_FORMAT_INCLUDED_
/*++
/* NAME
/* hfrom_format 3h
/* SUMMARY
/* Parse a header_from_format setting
/* SYNOPSIS
/* #include <hfrom_format.h>
/* DESCRIPTION
/* .nf
/*
* External interface.
*/
#define HFROM_FORMAT_CODE_OBS 0 /* Obsolete */
#define HFROM_FORMAT_CODE_STD 1 /* Standard */
extern int hfrom_format_parse(const char *, const char *);
extern const char *str_hfrom_format_code(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
|