gitweb: new cgi parameter: opt
[git/dscho.git] / utf8.h
blob15db6f1f27ef7a1f056d5b6adca901f092036f82
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 #ifndef NO_ICONV
11 char *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
16 #endif