X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/0e4472a082cdbb50ee54e1886abc332f3e11bcce..5aff007d8fcfb4c6cc3c3627ae15f45562db7a0d:/lib/charset.h diff --git a/lib/charset.h b/lib/charset.h index f77c583..e4c72a9 100644 --- a/lib/charset.h +++ b/lib/charset.h @@ -1,6 +1,6 @@ /* * 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 @@ -20,10 +20,10 @@ #ifndef CHARSET_H #define CHARSET_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 @@ -59,8 +59,7 @@ static inline char *nullcheck(char *s) { 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 */