chiark / gitweb /
Report disorder_eclient_volume() errors to the specific callback.
[disorder] / lib / charset.h
index 369d2b9b7da0b298a6c380e8921c37779aaf51d5..db5e7375ae6c9d238a7a54380e6b15bde14f3f11 100644 (file)
@@ -1,6 +1,7 @@
+
 /*
  * This file is part of DisOrder.
- * Copyright (C) 2004, 2005 Richard Kettlewell
+ * Copyright (C) 2004, 2005, 2007, 2008 Richard Kettlewell
  *
  * 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
 #ifndef CHARSET_H
 #define CHARSET_H
 
+#include "log.h"
+
+struct dynstr;
+
 /* Character encoding conversion routines */
 
-uint32_t *utf82ucs4(const char *mb);
-char *ucs42utf8(const uint32_t *u);
 char *mb2utf8(const char *mb);
 char *utf82mb(const char *utf8);
 /* various conversions, between multibyte strings (mb) in
@@ -48,14 +51,18 @@ char *any2any(const char *from/*encoding or 0*/,
  * that iconv knows.  If FROM and TO are both 0 then ANY is returned
  * unchanged. */
 
-
+/** @brief Insist that @p s is not null
+ * @param s Pointer to check
+ * @return @p s
+ *
+ * Terminates the process if @p s is a null pointer.
+ */
 static inline char *nullcheck(char *s) {
   if(!s) exitfn(1);                    /* assume an error already reported */
   return s;
 }
 
-int ucs4cmp(const uint32_t *a, const uint32_t *b);
-/* like strcmp */
+const char *truncate_for_display(const char *s, long max);
 
 #endif /* CHARSET_H */