2006-12-22 22:06:08 +01:00
|
|
|
#ifndef GIT_UTF8_H
|
|
|
|
#define GIT_UTF8_H
|
|
|
|
|
2008-01-07 04:02:22 +01:00
|
|
|
typedef unsigned int ucs_char_t; /* assuming 32bit int */
|
|
|
|
|
2008-01-02 10:49:58 +01:00
|
|
|
ucs_char_t pick_one_utf8_char(const char **start, size_t *remainder_p);
|
|
|
|
int utf8_width(const char **start, size_t *remainder_p);
|
2009-01-30 10:41:28 +01:00
|
|
|
int utf8_strwidth(const char *string);
|
2006-12-22 22:06:08 +01:00
|
|
|
int is_utf8(const char *text);
|
2006-12-30 21:20:43 +01:00
|
|
|
int is_encoding_utf8(const char *name);
|
|
|
|
|
2008-11-10 18:47:00 +01:00
|
|
|
int strbuf_add_wrapped_text(struct strbuf *buf,
|
|
|
|
const char *text, int indent, int indent2, int width);
|
2006-12-22 22:06:08 +01:00
|
|
|
|
2006-12-24 08:36:55 +01:00
|
|
|
#ifndef NO_ICONV
|
|
|
|
char *reencode_string(const char *in, const char *out_encoding, const char *in_encoding);
|
|
|
|
#else
|
|
|
|
#define reencode_string(a,b,c) NULL
|
|
|
|
#endif
|
|
|
|
|
2006-12-22 22:06:08 +01:00
|
|
|
#endif
|