]> git.ipfire.org Git - thirdparty/git.git/blame - utf8.h
add_excludes_from_file: clarify the bom skipping logic
[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
e0db1765 16void strbuf_add_wrapped_text(struct strbuf *buf,
a94410c8 17 const char *text, int indent, int indent2, int width);
e0db1765 18void strbuf_add_wrapped_bytes(struct strbuf *buf, const char *data, int len,
98acc837 19 int indent, int indent2, int width);
a7f01c6b
NTND
20void strbuf_utf8_replace(struct strbuf *sb, int pos, int width,
21 const char *subst);
9e832665 22
b45974a6 23#ifndef NO_ICONV
b782bbab
NTND
24char *reencode_string_iconv(const char *in, size_t insz,
25 iconv_t conv, int *outsz);
26char *reencode_string_len(const char *in, int insz,
27 const char *out_encoding,
28 const char *in_encoding,
29 int *outsz);
b45974a6 30#else
b782bbab 31#define reencode_string_len(a,b,c,d,e) NULL
b45974a6
JH
32#endif
33
b782bbab
NTND
34static inline char *reencode_string(const char *in,
35 const char *out_encoding,
36 const char *in_encoding)
37{
38 return reencode_string_len(in, strlen(in),
39 out_encoding, in_encoding,
40 NULL);
41}
42
6cd3c053
KS
43int mbs_chrlen(const char **text, size_t *remainder_p, const char *encoding);
44
6162a1d3
JK
45/*
46 * Returns true if the the path would match ".git" after HFS case-folding.
47 * The path should be NUL-terminated, but we will match variants of both ".git\0"
48 * and ".git/..." (but _not_ ".../.git"). This makes it suitable for both fsck
49 * and verify_path().
50 */
51int is_hfs_dotgit(const char *path);
52
9e832665 53#endif