diff options
author | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-05-12 16:40:54 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-05-12 16:40:54 +0800 |
commit | bd3559cdf211fbc4ba3a87e3a8a3237bc0be5e1c (patch) | |
tree | 7f7a648c5e777567608bd696f7358abce0ddedab /camel/camel-mime-utils.c | |
parent | 6f235e02f3ac099e25dbcd6f97e7fb905dc3b869 (diff) | |
download | gsoc2013-evolution-bd3559cdf211fbc4ba3a87e3a8a3237bc0be5e1c.tar gsoc2013-evolution-bd3559cdf211fbc4ba3a87e3a8a3237bc0be5e1c.tar.gz gsoc2013-evolution-bd3559cdf211fbc4ba3a87e3a8a3237bc0be5e1c.tar.bz2 gsoc2013-evolution-bd3559cdf211fbc4ba3a87e3a8a3237bc0be5e1c.tar.lz gsoc2013-evolution-bd3559cdf211fbc4ba3a87e3a8a3237bc0be5e1c.tar.xz gsoc2013-evolution-bd3559cdf211fbc4ba3a87e3a8a3237bc0be5e1c.tar.zst gsoc2013-evolution-bd3559cdf211fbc4ba3a87e3a8a3237bc0be5e1c.zip |
mime utils namespace change
svn path=/trunk/; revision=920
Diffstat (limited to 'camel/camel-mime-utils.c')
-rw-r--r-- | camel/camel-mime-utils.c | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c deleted file mode 100644 index fde9202730..0000000000 --- a/camel/camel-mime-utils.c +++ /dev/null @@ -1,36 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* mime-utils.c : misc utilities for mime */ - -/* - * - * Copyright (C) 1999 Bertrand Guiheneuf <Bertrand.Guiheneuf@inria.fr> . - * - * 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, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - * USA - */ - - - -#include "camel-mime-utils.h" -void -camel_mime_utils_write_header_pair_to_file(FILE* file, gchar* name, GString *value) -{ - g_assert(name); - - if ((value) && (value->str)) - fprintf(file, "%s: %s\n", name, value->str); -} - - |