Staging
v0.5.1
Revision 8ceca74a39788eeda64e9aa625fdebaad219ab42 authored by J. Bruce Fields on 05 June 2007, 22:42:58 UTC, committed by J. Bruce Fields on 10 June 2007, 20:38:50 UTC
I forgot to give an ID for this section.

Signed-off-by: "J. Bruce Fields" <bfields@citi.umich.edu>
1 parent 1da158e
Raw File
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