summaryrefslogtreecommitdiffabout
path: root/libetpan/src/low-level/imf/mailimf_write_file.c
Unidiff
Diffstat (limited to 'libetpan/src/low-level/imf/mailimf_write_file.c') (more/less context) (ignore whitespace changes)
-rw-r--r--libetpan/src/low-level/imf/mailimf_write_file.c149
1 files changed, 149 insertions, 0 deletions
diff --git a/libetpan/src/low-level/imf/mailimf_write_file.c b/libetpan/src/low-level/imf/mailimf_write_file.c
new file mode 100644
index 0000000..a1f7187
--- a/dev/null
+++ b/libetpan/src/low-level/imf/mailimf_write_file.c
@@ -0,0 +1,149 @@
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_file.h"
37#include "mailimf_write_generic.h"
38
39static int do_write(void * data, const char * str, size_t length)
40{
41 FILE * f;
42
43 f = data;
44
45 return fwrite(str, 1, length, f);
46}
47
48int mailimf_string_write_file(FILE * f, int * col,
49 const char * str, size_t length)
50{
51 return mailimf_string_write_driver(do_write, f, col, str, length);
52}
53
54int mailimf_fields_write_file(FILE * f, int * col,
55 struct mailimf_fields * fields)
56{
57 return mailimf_fields_write_driver(do_write, f, col, fields);
58}
59
60int mailimf_envelope_fields_write_file(FILE * f, int * col,
61 struct mailimf_fields * fields)
62{
63 return mailimf_envelope_fields_write_driver(do_write, f, col, fields);
64}
65
66int mailimf_field_write_file(FILE * f, int * col,
67 struct mailimf_field * field)
68{
69 return mailimf_field_write_driver(do_write, f, col, field);
70}
71
72int mailimf_quoted_string_write_file(FILE * f, int * col,
73 const char * string, size_t len)
74{
75 return mailimf_quoted_string_write_driver(do_write, f, col, string, len);
76}
77
78int mailimf_address_list_write_file(FILE * f, int * col,
79 struct mailimf_address_list * addr_list)
80{
81 return mailimf_address_list_write_driver(do_write, f, col, addr_list);
82}
83
84int mailimf_mailbox_list_write_file(FILE * f, int * col,
85 struct mailimf_mailbox_list * mb_list)
86{
87 return mailimf_mailbox_list_write_driver(do_write, f, col, mb_list);
88}
89
90int mailimf_header_string_write_file(FILE * f, int * col,
91 const char * str, size_t length)
92{
93 return mailimf_header_string_write_driver(do_write, f, col, str, length);
94}
95
96
97/* binary compatibility with 0.34 - begin */
98
99#ifdef MAILIMF_WRITE_COMPATIBILITY
100int mailimf_string_write(FILE * f, int * col,
101 const char * str, size_t length)
102{
103 return mailimf_string_write_file(f, col, str, length);
104}
105
106int mailimf_fields_write(FILE * f, int * col,
107 struct mailimf_fields * fields)
108{
109 return mailimf_fields_write_file(f, col, fields);
110}
111
112int mailimf_envelope_fields_write(FILE * f, int * col,
113 struct mailimf_fields * fields)
114{
115 return mailimf_envelope_fields_write_file(f, col, fields);
116}
117
118int mailimf_field_write(FILE * f, int * col,
119 struct mailimf_field * field)
120{
121 return mailimf_field_write_file(f, col, field);
122}
123
124int mailimf_quoted_string_write(FILE * f, int * col,
125 const char * string, size_t len)
126{
127 return mailimf_quoted_string_write_file(f, col, string, len);
128}
129
130int mailimf_address_list_write(FILE * f, int * col,
131 struct mailimf_address_list * addr_list)
132{
133 return mailimf_address_list_write_file(f, col, addr_list);
134}
135
136int mailimf_mailbox_list_write(FILE * f, int * col,
137 struct mailimf_mailbox_list * mb_list)
138{
139 return mailimf_mailbox_list_write_file(f, col, mb_list);
140}
141
142int mailimf_header_string_write(FILE * f, int * col,
143 const char * str, size_t length)
144{
145 return mailimf_header_string_write_file(f, col, str, length);
146}
147#endif
148
149/* binary compatibility with 0.34 - end */