Staging
v0.8.1
Revision f9e8a43a007e81b564516576550a505967389942 authored by Steven Grimm on 06 January 2007, 03:14:04 UTC, committed by Junio C Hamano on 06 January 2007, 18:42:49 UTC
Signed-off-by: Steven Grimm <koreth@midwinter.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 1170e80
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);

void 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