1#ifndef GIT_UTF8_H2#define GIT_UTF8_H34int utf8_width(const char **start);5int is_utf8(const char *text);6void print_wrapped_text(const char *text, int indent, int indent2, int len);78#ifndef NO_ICONV9char *reencode_string(const char *in, const char *out_encoding, const char *in_encoding);10#else11#define reencode_string(a,b,c) NULL12#endif1314#endif