Staging
v0.5.1
https://github.com/git/git
Revision ceb8442af7367611c3f5db124a5dc1dbb7fb438f authored by Junio C Hamano on 19 March 2007, 09:28:29 UTC, committed by Junio C Hamano on 19 March 2007, 09:56:29 UTC
I think we can start to slow down, as we now have covered
everything I listed earlier in the short-term release plan.

The last release 1.5.0 took painfully too long.

Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 843d49a
Raw File
Tip revision: ceb8442af7367611c3f5db124a5dc1dbb7fb438f authored by Junio C Hamano on 19 March 2007, 09:28:29 UTC
GIT 1.5.1-rc1
Tip revision: ceb8442
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