]> code.citadel.org Git - citadel.git/blobdiff - webcit/decode.c
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
[citadel.git] / webcit / decode.c
index c702fdfa387e4fafb9c68ef861164c316e4e4cbc..c3d0a8ed72a7fa6f17a775b9c6720f40cfedb824 100644 (file)
@@ -1,3 +1,21 @@
+/*
+ * Copyright (c) 1996-2012 by the citadel.org team
+ *
+ * This program is open source software.  You can redistribute it and/or
+ * modify it under the terms of the GNU General Public License, version 3.
+ * 
+ * 
+ *
+ * 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.
+ *
+ * 
+ * 
+ * 
+ */
+
 #include "webcit.h"
 #ifdef HAVE_ICONV
 
@@ -27,7 +45,7 @@ iconv_t ctdl_iconv_open(const char *tocode, const char *fromcode)
 */
 
 
-inline char *FindNextEnd (char *bptr)
+static inline char *FindNextEnd (char *bptr)
 {
        char * end;
        /* Find the next ?Q? */
@@ -235,7 +253,7 @@ void utf8ify_rfc822_string(char **buf) {
 
 }
 #else
-inline void utf8ify_rfc822_string(char *a){};
+inline void utf8ify_rfc822_string(char **a){};
 
 #endif