1#ifndef GIT_UTF8_H 2#define GIT_UTF8_H 3 4typedefunsigned int ucs_char_t;/* assuming 32bit int */ 5 6size_tdisplay_mode_esc_sequence_len(const char*s); 7intutf8_width(const char**start,size_t*remainder_p); 8intutf8_strnwidth(const char*string,int len,int skip_ansi); 9intutf8_strwidth(const char*string); 10intis_utf8(const char*text); 11intis_encoding_utf8(const char*name); 12intsame_encoding(const char*,const char*); 13__attribute__((format(printf,2,3))) 14intutf8_fprintf(FILE*,const char*, ...); 15 16externconst char utf8_bom[]; 17externintskip_utf8_bom(char**,size_t); 18 19voidstrbuf_add_wrapped_text(struct strbuf *buf, 20const char*text,int indent,int indent2,int width); 21voidstrbuf_add_wrapped_bytes(struct strbuf *buf,const char*data,int len, 22int indent,int indent2,int width); 23voidstrbuf_utf8_replace(struct strbuf *sb,int pos,int width, 24const char*subst); 25 26#ifndef NO_ICONV 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, 30const char*out_encoding, 31const char*in_encoding, 32int*outsz); 33#else 34staticinlinechar*reencode_string_len(const char*a,int b, 35const char*c,const char*d,int*e) 36{if(e) *e =0;return NULL; } 37#endif 38 39staticinlinechar*reencode_string(const char*in, 40const char*out_encoding, 41const char*in_encoding) 42{ 43returnreencode_string_len(in,strlen(in), 44 out_encoding, in_encoding, 45 NULL); 46} 47 48intmbs_chrlen(const char**text,size_t*remainder_p,const char*encoding); 49 50/* 51 * Returns true if the path would match ".git" after HFS case-folding. 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 * 56 * Likewise, the is_hfs_dotgitfoo() variants look for ".gitfoo". 57 */ 58intis_hfs_dotgit(const char*path); 59intis_hfs_dotgitmodules(const char*path); 60intis_hfs_dotgitignore(const char*path); 61intis_hfs_dotgitattributes(const char*path); 62 63typedefenum{ 64 ALIGN_LEFT, 65 ALIGN_MIDDLE, 66 ALIGN_RIGHT 67} align_type; 68 69/* 70 * Align the string given and store it into a strbuf as per the 71 * 'position' and 'width'. If the given string length is larger than 72 * 'width' than then the input string is not truncated and no 73 * alignment is done. 74 */ 75voidstrbuf_utf8_align(struct strbuf *buf, align_type position,unsigned int width, 76const char*s); 77 78/* 79 * If a data stream is declared as UTF-16BE or UTF-16LE, then a UTF-16 80 * BOM must not be used [1]. The same applies for the UTF-32 equivalents. 81 * The function returns true if this rule is violated. 82 * 83 * [1] http://unicode.org/faq/utf_bom.html#bom10 84 */ 85inthas_prohibited_utf_bom(const char*enc,const char*data,size_t len); 86 87/* 88 * If the endianness is not defined in the encoding name, then we 89 * require a BOM. The function returns true if a required BOM is missing. 90 * 91 * The Unicode standard instructs to assume big-endian if there in no 92 * BOM for UTF-16/32 [1][2]. However, the W3C/WHATWG encoding standard 93 * used in HTML5 recommends to assume little-endian to "deal with 94 * deployed content" [3]. 95 * 96 * Therefore, strictly requiring a BOM seems to be the safest option for 97 * content in Git. 98 * 99 * [1] http://unicode.org/faq/utf_bom.html#gen6 100 * [2] http://www.unicode.org/versions/Unicode10.0.0/ch03.pdf 101 * Section 3.10, D98, page 132 102 * [3] https://encoding.spec.whatwg.org/#utf-16le 103 */ 104intis_missing_required_utf_bom(const char*enc,const char*data,size_t len); 105 106#endif