utf8.hon commit Merge branch 'sb/merge-friendly' (e036c90)
   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
   8#endif