2006-12-22 21:06:08 +00:00
|
|
|
#ifndef GIT_UTF8_H
|
|
|
|
#define GIT_UTF8_H
|
|
|
|
|
2008-01-07 03:02:22 +00:00
|
|
|
typedef unsigned int ucs_char_t; /* assuming 32bit int */
|
|
|
|
|
2013-04-18 23:08:52 +00:00
|
|
|
size_t display_mode_esc_sequence_len(const char *s);
|
2008-01-02 09:49:58 +00:00
|
|
|
int utf8_width(const char **start, size_t *remainder_p);
|
2013-04-18 23:08:45 +00:00
|
|
|
int utf8_strnwidth(const char *string, int len, int skip_ansi);
|
2009-01-30 09:41:28 +00:00
|
|
|
int utf8_strwidth(const char *string);
|
2006-12-22 21:06:08 +00:00
|
|
|
int is_utf8(const char *text);
|
2006-12-30 20:20:43 +00:00
|
|
|
int is_encoding_utf8(const char *name);
|
2012-10-19 05:41:56 +00:00
|
|
|
int same_encoding(const char *, const char *);
|
2013-02-09 06:31:09 +00:00
|
|
|
int utf8_fprintf(FILE *, const char *, ...);
|
2006-12-30 20:20:43 +00:00
|
|
|
|
2012-12-11 05:59:22 +00:00
|
|
|
void strbuf_add_wrapped_text(struct strbuf *buf,
|
2008-11-10 17:47:00 +00:00
|
|
|
const char *text, int indent, int indent2, int width);
|
2012-12-11 05:59:22 +00:00
|
|
|
void strbuf_add_wrapped_bytes(struct strbuf *buf, const char *data, int len,
|
2011-02-23 09:50:19 +00:00
|
|
|
int indent, int indent2, int width);
|
2013-04-18 23:08:51 +00:00
|
|
|
void strbuf_utf8_replace(struct strbuf *sb, int pos, int width,
|
|
|
|
const char *subst);
|
2006-12-22 21:06:08 +00:00
|
|
|
|
2006-12-24 07:36:55 +00:00
|
|
|
#ifndef NO_ICONV
|
2013-04-18 23:08:46 +00:00
|
|
|
char *reencode_string_iconv(const char *in, size_t insz,
|
|
|
|
iconv_t conv, int *outsz);
|
|
|
|
char *reencode_string_len(const char *in, int insz,
|
|
|
|
const char *out_encoding,
|
|
|
|
const char *in_encoding,
|
|
|
|
int *outsz);
|
2006-12-24 07:36:55 +00:00
|
|
|
#else
|
2013-04-18 23:08:46 +00:00
|
|
|
#define reencode_string_len(a,b,c,d,e) NULL
|
2006-12-24 07:36:55 +00:00
|
|
|
#endif
|
|
|
|
|
2013-04-18 23:08:46 +00:00
|
|
|
static inline char *reencode_string(const char *in,
|
|
|
|
const char *out_encoding,
|
|
|
|
const char *in_encoding)
|
|
|
|
{
|
|
|
|
return reencode_string_len(in, strlen(in),
|
|
|
|
out_encoding, in_encoding,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
2013-03-07 10:55:07 +00:00
|
|
|
int mbs_chrlen(const char **text, size_t *remainder_p, const char *encoding);
|
|
|
|
|
2006-12-22 21:06:08 +00:00
|
|
|
#endif
|