]> git.ipfire.org Git - thirdparty/git.git/blame - utf8.h
Move commit reencoding parameter parsing to revision.c
[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);
6void print_wrapped_text(const char *text, int indent, int indent2, int len);
7
b45974a6
JH
8#ifndef NO_ICONV
9char *reencode_string(const char *in, const char *out_encoding, const char *in_encoding);
10#else
11#define reencode_string(a,b,c) NULL
12#endif
13
9e832665 14#endif