help.autocorrect: do not run a command if the command given is junk
[git/dscho.git] / utf8.h
blob2f1b14ff49ef3c73bee6f298ba396b96120c34b7
1 #ifndef GIT_UTF8_H
2 #define GIT_UTF8_H
4 typedef unsigned int ucs_char_t; /* assuming 32bit int */
6 ucs_char_t pick_one_utf8_char(const char **start, size_t *remainder_p);
7 int utf8_width(const char **start, size_t *remainder_p);
8 int utf8_strwidth(const char *string);
9 int is_utf8(const char *text);
10 int is_encoding_utf8(const char *name);
12 int print_wrapped_text(const char *text, int indent, int indent2, int len);
14 #ifndef NO_ICONV
15 char *reencode_string(const char *in, const char *out_encoding, const char *in_encoding);
16 #else
17 #define reencode_string(a,b,c) NULL
18 #endif
20 #endif