~ubuntu-branches/ubuntu/intrepid/git-core/intrepid-updates

« back to all changes in this revision

Viewing changes to utf8.h

  • Committer: Package Import Robot
  • Author(s): Gerrit Pape
  • Date: 2007-04-22 13:31:05 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20070422133105-tkmhz328g2p0epz1
Tags: 1:1.5.1.2-1
* new upstream point release.
* debian/changelog.upstream: upstream changes taken from mailing list
  announcement.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef GIT_UTF8_H
 
2
#define GIT_UTF8_H
 
3
 
 
4
int utf8_width(const char **start);
 
5
int is_utf8(const char *text);
 
6
int is_encoding_utf8(const char *name);
 
7
 
 
8
int print_wrapped_text(const char *text, int indent, int indent2, int len);
 
9
 
 
10
#ifndef NO_ICONV
 
11
char *reencode_string(const char *in, const char *out_encoding, const char *in_encoding);
 
12
#else
 
13
#define reencode_string(a,b,c) NULL
 
14
#endif
 
15
 
 
16
#endif