]> git.ipfire.org Git - thirdparty/git.git/blame - utf8.h
git.el: Display file types and type changes.
[thirdparty/git.git] / utf8.h
CommitLineData
9e832665
JS
1#ifndef GIT_UTF8_H
2#define GIT_UTF8_H
3
4int utf8_width(const char **start);
5int is_utf8(const char *text);
677cfed5
JH
6int is_encoding_utf8(const char *name);
7
094e03b0 8int print_wrapped_text(const char *text, int indent, int indent2, int len);
9e832665 9
b45974a6
JH
10#ifndef NO_ICONV
11char *reencode_string(const char *in, const char *out_encoding, const char *in_encoding);
12#else
13#define reencode_string(a,b,c) NULL
14#endif
15
9e832665 16#endif