summaryrefslogtreecommitdiffabout
path: root/libetpan/src/low-level/imf/mailimf_write_mem.c
Unidiff
Diffstat (limited to 'libetpan/src/low-level/imf/mailimf_write_mem.c') (more/less context) (ignore whitespace changes)
-rw-r--r--libetpan/src/low-level/imf/mailimf_write_mem.c98
1 files changed, 98 insertions, 0 deletions
diff --git a/libetpan/src/low-level/imf/mailimf_write_mem.c b/libetpan/src/low-level/imf/mailimf_write_mem.c
new file mode 100644
index 0000000..00c043f
--- a/dev/null
+++ b/libetpan/src/low-level/imf/mailimf_write_mem.c
@@ -0,0 +1,98 @@
1/*
2 * libEtPan! -- a mail stuff library
3 *
4 * Copyright (C) 2001, 2005 - DINH Viet Hoa
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the libEtPan! project nor the names of its
16 * contributors may be used to endorse or promote products derived
17 * from this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32/*
33 * $Id$
34 */
35
36#include "mailimf_write_mem.h"
37#include "mailimf_write_generic.h"
38
39static int do_write(void * data, const char * str, size_t length)
40{
41 MMAPString * f;
42
43 f = data;
44
45 if (mmap_string_append_len(f, str, length) == NULL)
46 return 0;
47 else
48 return length;
49}
50
51int mailimf_string_write_mem(MMAPString * f, int * col,
52 const char * str, size_t length)
53{
54 return mailimf_string_write_driver(do_write, f, col, str, length);
55}
56
57int mailimf_fields_write_mem(MMAPString * f, int * col,
58 struct mailimf_fields * fields)
59{
60 return mailimf_fields_write_driver(do_write, f, col, fields);
61}
62
63int mailimf_envelope_fields_write_mem(MMAPString * f, int * col,
64 struct mailimf_fields * fields)
65{
66 return mailimf_envelope_fields_write_driver(do_write, f, col, fields);
67}
68
69int mailimf_field_write_mem(MMAPString * f, int * col,
70 struct mailimf_field * field)
71{
72 return mailimf_field_write_driver(do_write, f, col, field);
73}
74
75int mailimf_quoted_string_write_mem(MMAPString * f, int * col,
76 const char * string, size_t len)
77{
78 return mailimf_quoted_string_write_driver(do_write, f, col, string, len);
79}
80
81int mailimf_address_list_write_mem(MMAPString * f, int * col,
82 struct mailimf_address_list * addr_list)
83{
84 return mailimf_address_list_write_driver(do_write, f, col, addr_list);
85}
86
87int mailimf_mailbox_list_write_mem(MMAPString * f, int * col,
88 struct mailimf_mailbox_list * mb_list)
89{
90 return mailimf_mailbox_list_write_driver(do_write, f, col, mb_list);
91}
92
93int mailimf_header_string_write_mem(MMAPString * f, int * col,
94 const char * str, size_t length)
95{
96 return mailimf_header_string_write_driver(do_write, f, col, str, length);
97}
98