X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/0e4472a082cdbb50ee54e1886abc332f3e11bcce..349b7b74df53fe1631a269f4cd4e87951cfe9397:/lib/charset.h diff --git a/lib/charset.h b/lib/charset.h index f77c583..70b5b2f 100644 --- a/lib/charset.h +++ b/lib/charset.h @@ -20,8 +20,12 @@ #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 */ /*