Windows: redirect f[re]open("/dev/null") to f[re]open("nul")
[git/dscho.git] / utf8.h
blobc9738d83d991d89bbdd4c5a6442fcad2fdaaa4df
1 #ifndef GIT_UTF8_H
2 #define GIT_UTF8_H
4 typedef unsigned int ucs_char_t; /* assuming 32bit int */
6 int utf8_width(const char **start, size_t *remainder_p);
7 int utf8_strwidth(const char *string);
8 int is_utf8(const char *text);
9 int is_encoding_utf8(const char *name);
11 int print_wrapped_text(const char *text, int indent, int indent2, int len);
12 int strbuf_add_wrapped_text(struct strbuf *buf,
13 const char *text, int indent, int indent2, int width);
15 #ifndef NO_ICONV
16 char *reencode_string(const char *in, const char *out_encoding, const char *in_encoding);
17 #else
18 #define reencode_string(a,b,c) NULL
19 #endif
21 #endif