chiark / gitweb /
always get tool_active right
[disorder] / lib / charset.h
index f77c58378be2002cc262e0cd85bb8a605d84d479..70b5b2f40d68baa141e1f73497a87ddc6c5f92d6 100644 (file)
 #ifndef CHARSET_H
 #define CHARSET_H
 
+struct dynstr;
+
 /* Character encoding conversion routines */
 
+int one_ucs42utf8(uint32_t c, struct dynstr *d);
+
 uint32_t *utf82ucs4(const char *mb);
 char *ucs42utf8(const uint32_t *u);
 char *mb2utf8(const char *mb);
@@ -62,6 +66,8 @@ static inline char *nullcheck(char *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 */
 
 /*