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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* GMime
* Copyright (C) 2000-2022 Jeffrey Stedfast
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <string.h>
#include <gmime/gmime.h>
int main (int argc, char **argv)
{
GMimeStream *istream, *ostream, *fstream;
GMimeFilter *html;
int i;
g_mime_init ();
fstream = g_mime_stream_file_new (stdout);
ostream = g_mime_stream_filter_new (fstream);
g_object_unref (fstream);
html = g_mime_filter_html_new (GMIME_FILTER_HTML_CONVERT_NL |
GMIME_FILTER_HTML_CONVERT_SPACES |
GMIME_FILTER_HTML_CONVERT_URLS |
GMIME_FILTER_HTML_CONVERT_ADDRESSES |
GMIME_FILTER_HTML_MARK_CITATION |
GMIME_FILTER_HTML_ESCAPE_8BIT, 0x008888);
g_mime_stream_filter_add (GMIME_STREAM_FILTER (ostream), html);
g_object_unref (html);
for (i = 1; i < argc; i++) {
FILE *fp;
if (!(fp = fopen (argv[i], "r"))) {
fprintf (stderr, "failed to open %s\n", argv[i]);
continue;
}
istream = g_mime_stream_file_new (fp);
g_mime_stream_write_to_stream (istream, ostream);
g_object_unref (istream);
}
g_object_unref (ostream);
return 0;
}
|