diff options
author | bertrand <Bertrand.Guiheneuf@aful.org> | 1999-08-05 01:42:02 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-08-05 01:42:02 +0800 |
commit | 7e2281704d4da682c013ec04e63adbaa69c49ac6 (patch) | |
tree | 5d19f1ea59f2669a2d7d0516255d12c6bb3c7ee2 /camel/gmime-rfc2047.h | |
parent | e77e777a5701b825eb16f434d7497471635e3bc3 (diff) | |
download | gsoc2013-evolution-7e2281704d4da682c013ec04e63adbaa69c49ac6.tar gsoc2013-evolution-7e2281704d4da682c013ec04e63adbaa69c49ac6.tar.gz gsoc2013-evolution-7e2281704d4da682c013ec04e63adbaa69c49ac6.tar.bz2 gsoc2013-evolution-7e2281704d4da682c013ec04e63adbaa69c49ac6.tar.lz gsoc2013-evolution-7e2281704d4da682c013ec04e63adbaa69c49ac6.tar.xz gsoc2013-evolution-7e2281704d4da682c013ec04e63adbaa69c49ac6.tar.zst gsoc2013-evolution-7e2281704d4da682c013ec04e63adbaa69c49ac6.zip |
indentation and cosmetic changes.
1999-08-04 bertrand <Bertrand.Guiheneuf@aful.org>
* camel/gmime-rfc2047.c:
* camel/gmime-rfc2047.h:
indentation and cosmetic changes.
svn path=/trunk/; revision=1079
Diffstat (limited to 'camel/gmime-rfc2047.h')
-rw-r--r-- | camel/gmime-rfc2047.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/camel/gmime-rfc2047.h b/camel/gmime-rfc2047.h index 78c463639d..f833b653f4 100644 --- a/camel/gmime-rfc2047.h +++ b/camel/gmime-rfc2047.h @@ -1,6 +1,7 @@ -#ifndef GMIME_RFC2047_H +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* gmime-rfc2047.c: implemention of RFC2047 */ -/* +/* * Copyright (C) 1999 Bertrand Guiheneuf <Bertrand.Guiheneuf@inria.fr> . * * This program is free software; you can redistribute it and/or @@ -20,10 +21,12 @@ * */ +#ifndef GMIME_RFC2047_H +#define GMIME_RFC2047_H 1 #include <glib.h> -gchar *gmime_rfc2047_decode(const gchar *text, const gchar* charset); -gchar *gmime_rfc2047_encode(const gchar *text, const gchar* charset); +gchar *gmime_rfc2047_decode (const gchar *text, const gchar* charset); +gchar *gmime_rfc2047_encode (const gchar *text, const gchar* charset); /* * pass text and charset, (e.g. "UTF-8", or "ISO-8859-1"), and @@ -39,4 +42,4 @@ gchar *gmime_rfc2047_encode(const gchar *text, const gchar* charset); * The caller will need to free the memory for the string. */ -#endif +#endif /* GMIME_RFC2047_H */ |