skip t5512 because remote does not yet work
[git/platforms/storm.git] / utf8.h
bloba8b8c2f4da42defbc411a0e84ae101f0aeda7373
1 #ifndef GIT_UTF8_H
2 #define GIT_UTF8_H
4 int utf8_width(const char **start);
5 int is_utf8(const char *text);
6 int is_encoding_utf8(const char *name);
8 int print_wrapped_text(const char *text, int indent, int indent2, int len);
10 char *reencode_string(const char *in, const char *out_encoding, const char *in_encoding);
12 #endif