2006-12-23 00:06:08 +03:00
|
|
|
#ifndef GIT_UTF8_H
|
|
|
|
#define GIT_UTF8_H
|
|
|
|
|
|
|
|
int utf8_width(const char **start);
|
|
|
|
int is_utf8(const char *text);
|
2006-12-30 23:20:43 +03:00
|
|
|
int is_encoding_utf8(const char *name);
|
|
|
|
|
2007-02-27 18:20:31 +03:00
|
|
|
int print_wrapped_text(const char *text, int indent, int indent2, int len);
|
2006-12-23 00:06:08 +03:00
|
|
|
|
2006-12-24 10:36:55 +03:00
|
|
|
#ifndef NO_ICONV
|
|
|
|
char *reencode_string(const char *in, const char *out_encoding, const char *in_encoding);
|
|
|
|
#else
|
|
|
|
#define reencode_string(a,b,c) NULL
|
|
|
|
#endif
|
|
|
|
|
2006-12-23 00:06:08 +03:00
|
|
|
#endif
|