]> code.citadel.org Git - citadel.git/blobdiff - webcit/webcit.h
Multipart/alternative (possibly nested inside multipart/mixed)
[citadel.git] / webcit / webcit.h
index ab0f7669635642f2a8d82e00ecf42c7ee0927e42..890e432dde7c8c45b389f4d8025f1b4d1e3a3a23 100644 (file)
@@ -51,7 +51,9 @@
 #ifdef ENABLE_NLS
 #include <libintl.h>
 #include <locale.h>
+#ifdef HAVE_USELOCALE
 extern locale_t wc_locales[];
+#endif
 #define _(string)      gettext(string)
 #else
 #define _(string)      (string)
@@ -758,6 +760,8 @@ void display_wiki_page(void);
 int get_time_format_cached (void);
 int xtoi(char *in, size_t len);
 void webcit_fmt_date(char *buf, time_t thetime, int brief);
+char *html_to_ascii(char *inputmsg, int msglen, int screenwidth, int do_citaformat);
+
 
 #ifdef HAVE_ICONV
 iconv_t ctdl_iconv_open(const char *tocode, const char *fromcode);