]> git.ipfire.org Git - thirdparty/git.git/blame - utf8.h
utf8: teach same_encoding() alternative UTF encoding names
[thirdparty/git.git] / utf8.h
CommitLineData
9e832665
JS
1#ifndef GIT_UTF8_H
2#define GIT_UTF8_H
3
396ccf1f
JH
4typedef unsigned int ucs_char_t; /* assuming 32bit int */
5
1640632b 6size_t display_mode_esc_sequence_len(const char *s);
44b25b87 7int utf8_width(const char **start, size_t *remainder_p);
2bc1e7ec 8int utf8_strnwidth(const char *string, int len, int skip_ansi);
8a9391e9 9int utf8_strwidth(const char *string);
9e832665 10int is_utf8(const char *text);
677cfed5 11int is_encoding_utf8(const char *name);
0e18bcd5 12int same_encoding(const char *, const char *);
4621085b 13__attribute__((format (printf, 2, 3)))
c0821965 14int utf8_fprintf(FILE *, const char *, ...);
677cfed5 15
dde843e7
JH
16extern const char utf8_bom[];
17extern int skip_utf8_bom(char **, size_t);
18
e0db1765 19void strbuf_add_wrapped_text(struct strbuf *buf,
a94410c8 20 const char *text, int indent, int indent2, int width);
e0db1765 21void strbuf_add_wrapped_bytes(struct strbuf *buf, const char *data, int len,
98acc837 22 int indent, int indent2, int width);
a7f01c6b
NTND
23void strbuf_utf8_replace(struct strbuf *sb, int pos, int width,
24 const char *subst);
9e832665 25
b45974a6 26#ifndef NO_ICONV
b782bbab
NTND
27char *reencode_string_iconv(const char *in, size_t insz,
28 iconv_t conv, int *outsz);
29char *reencode_string_len(const char *in, int insz,
30 const char *out_encoding,
31 const char *in_encoding,
32 int *outsz);
b45974a6 33#else
e654eb29
ES
34static inline char *reencode_string_len(const char *a, int b,
35 const char *c, const char *d, int *e)
36{ if (e) *e = 0; return NULL; }
b45974a6
JH
37#endif
38
b782bbab
NTND
39static inline char *reencode_string(const char *in,
40 const char *out_encoding,
41 const char *in_encoding)
42{
43 return reencode_string_len(in, strlen(in),
44 out_encoding, in_encoding,
45 NULL);
46}
47
6cd3c053
KS
48int mbs_chrlen(const char **text, size_t *remainder_p, const char *encoding);
49
6162a1d3 50/*
832c0e5e 51 * Returns true if the path would match ".git" after HFS case-folding.
6162a1d3
JK
52 * The path should be NUL-terminated, but we will match variants of both ".git\0"
53 * and ".git/..." (but _not_ ".../.git"). This makes it suitable for both fsck
54 * and verify_path().
55 */
56int is_hfs_dotgit(const char *path);
57
110dcda5
KN
58typedef enum {
59 ALIGN_LEFT,
60 ALIGN_MIDDLE,
61 ALIGN_RIGHT
62} align_type;
63
64/*
65 * Align the string given and store it into a strbuf as per the
66 * 'position' and 'width'. If the given string length is larger than
67 * 'width' than then the input string is not truncated and no
68 * alignment is done.
69 */
70void strbuf_utf8_align(struct strbuf *buf, align_type position, unsigned int width,
71 const char *s);
72
9e832665 73#endif