]> git.ipfire.org Git - thirdparty/git.git/blame - utf8.h
Documentation: quote braces in {upstream} notation
[thirdparty/git.git] / utf8.h
CommitLineData
9e832665
JS
1#ifndef GIT_UTF8_H
2#define GIT_UTF8_H
3
396ccf1f
JH
4typedef unsigned int ucs_char_t; /* assuming 32bit int */
5
44b25b87 6int utf8_width(const char **start, size_t *remainder_p);
8a9391e9 7int utf8_strwidth(const char *string);
9e832665 8int is_utf8(const char *text);
677cfed5
JH
9int is_encoding_utf8(const char *name);
10
094e03b0 11int print_wrapped_text(const char *text, int indent, int indent2, int len);
a94410c8
JS
12int strbuf_add_wrapped_text(struct strbuf *buf,
13 const char *text, int indent, int indent2, int width);
9e832665 14
b45974a6
JH
15#ifndef NO_ICONV
16char *reencode_string(const char *in, const char *out_encoding, const char *in_encoding);
17#else
18#define reencode_string(a,b,c) NULL
19#endif
20
9e832665 21#endif