Use off_t for index and pack file lengths.
[git.git] / utf8.h
blobcae2a8e665c2cbe7bf31a49deed84250eaa37a33
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 void print_wrapped_text(const char *text, int indent, int indent2, int len);
8 #ifndef NO_ICONV
9 char *reencode_string(const char *in, const char *out_encoding, const char *in_encoding);
10 #else
11 #define reencode_string(a,b,c) NULL
12 #endif
14 #endif