Staging
v0.5.1
https://github.com/git/git
Revision 4f8f03d6435e3e1c0d4f95d43022b81c95d6347f authored by Junio C Hamano on 03 August 2007, 22:33:57 UTC, committed by Junio C Hamano on 03 August 2007, 22:33:57 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent a697ec6
Raw File
Tip revision: 4f8f03d6435e3e1c0d4f95d43022b81c95d6347f authored by Junio C Hamano on 03 August 2007, 22:33:57 UTC
GIT 1.5.3-rc4
Tip revision: 4f8f03d
utf8.h
#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);

#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

#endif
back to top