Files
git/utf8.h
Johannes Sixt 631f6e6249 Fake reencoding success under NO_ICONV instead of returning NULL.
git-am when invoked from git-rebase seems to rely on successful conversion.
2007-07-23 22:42:36 +02:00

13 lines
322 B
C

#ifndef GIT_UTF8_H
#define GIT_UTF8_H
int utf8_width(const char **start);
int is_utf8(const char *text);
int is_encoding_utf8(const char *name);
int print_wrapped_text(const char *text, int indent, int indent2, int len);
char *reencode_string(const char *in, const char *out_encoding, const char *in_encoding);
#endif