2006-12-22 21:06:08 +00:00
|
|
|
#ifndef GIT_UTF8_H
|
|
|
|
#define GIT_UTF8_H
|
|
|
|
|
2008-01-07 03:02:22 +00:00
|
|
|
typedef unsigned int ucs_char_t; /* assuming 32bit int */
|
|
|
|
|
2013-04-18 23:08:52 +00:00
|
|
|
size_t display_mode_esc_sequence_len(const char *s);
|
2008-01-02 09:49:58 +00:00
|
|
|
int utf8_width(const char **start, size_t *remainder_p);
|
2013-04-18 23:08:45 +00:00
|
|
|
int utf8_strnwidth(const char *string, int len, int skip_ansi);
|
2009-01-30 09:41:28 +00:00
|
|
|
int utf8_strwidth(const char *string);
|
2006-12-22 21:06:08 +00:00
|
|
|
int is_utf8(const char *text);
|
2006-12-30 20:20:43 +00:00
|
|
|
int is_encoding_utf8(const char *name);
|
2012-10-19 05:41:56 +00:00
|
|
|
int same_encoding(const char *, const char *);
|
2013-07-10 00:18:40 +00:00
|
|
|
__attribute__((format (printf, 2, 3)))
|
2013-02-09 06:31:09 +00:00
|
|
|
int utf8_fprintf(FILE *, const char *, ...);
|
2006-12-30 20:20:43 +00:00
|
|
|
|
2015-04-16 17:45:29 +00:00
|
|
|
extern const char utf8_bom[];
|
|
|
|
extern int skip_utf8_bom(char **, size_t);
|
|
|
|
|
2012-12-11 05:59:22 +00:00
|
|
|
void strbuf_add_wrapped_text(struct strbuf *buf,
|
2008-11-10 17:47:00 +00:00
|
|
|
const char *text, int indent, int indent2, int width);
|
2012-12-11 05:59:22 +00:00
|
|
|
void strbuf_add_wrapped_bytes(struct strbuf *buf, const char *data, int len,
|
2011-02-23 09:50:19 +00:00
|
|
|
int indent, int indent2, int width);
|
2013-04-18 23:08:51 +00:00
|
|
|
void strbuf_utf8_replace(struct strbuf *sb, int pos, int width,
|
|
|
|
const char *subst);
|
2006-12-22 21:06:08 +00:00
|
|
|
|
2006-12-24 07:36:55 +00:00
|
|
|
#ifndef NO_ICONV
|
2013-04-18 23:08:46 +00:00
|
|
|
char *reencode_string_iconv(const char *in, size_t insz,
|
|
|
|
iconv_t conv, int *outsz);
|
|
|
|
char *reencode_string_len(const char *in, int insz,
|
|
|
|
const char *out_encoding,
|
|
|
|
const char *in_encoding,
|
|
|
|
int *outsz);
|
2006-12-24 07:36:55 +00:00
|
|
|
#else
|
2015-06-05 06:42:16 +00:00
|
|
|
static inline char *reencode_string_len(const char *a, int b,
|
|
|
|
const char *c, const char *d, int *e)
|
|
|
|
{ if (e) *e = 0; return NULL; }
|
2006-12-24 07:36:55 +00:00
|
|
|
#endif
|
|
|
|
|
2013-04-18 23:08:46 +00:00
|
|
|
static inline char *reencode_string(const char *in,
|
|
|
|
const char *out_encoding,
|
|
|
|
const char *in_encoding)
|
|
|
|
{
|
|
|
|
return reencode_string_len(in, strlen(in),
|
|
|
|
out_encoding, in_encoding,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
2013-03-07 10:55:07 +00:00
|
|
|
int mbs_chrlen(const char **text, size_t *remainder_p, const char *encoding);
|
|
|
|
|
2014-12-15 22:56:59 +00:00
|
|
|
/*
|
|
|
|
* Returns true if the the path would match ".git" after HFS case-folding.
|
|
|
|
* The path should be NUL-terminated, but we will match variants of both ".git\0"
|
|
|
|
* and ".git/..." (but _not_ ".../.git"). This makes it suitable for both fsck
|
|
|
|
* and verify_path().
|
|
|
|
*/
|
|
|
|
int is_hfs_dotgit(const char *path);
|
|
|
|
|
2015-09-10 15:48:19 +00:00
|
|
|
typedef enum {
|
|
|
|
ALIGN_LEFT,
|
|
|
|
ALIGN_MIDDLE,
|
|
|
|
ALIGN_RIGHT
|
|
|
|
} align_type;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Align the string given and store it into a strbuf as per the
|
|
|
|
* 'position' and 'width'. If the given string length is larger than
|
|
|
|
* 'width' than then the input string is not truncated and no
|
|
|
|
* alignment is done.
|
|
|
|
*/
|
|
|
|
void strbuf_utf8_align(struct strbuf *buf, align_type position, unsigned int width,
|
|
|
|
const char *s);
|
|
|
|
|
2006-12-22 21:06:08 +00:00
|
|
|
#endif
|