mirror of
https://github.com/git/git.git
synced 2024-11-01 23:07:55 +01:00
9 lines
191 B
C
9 lines
191 B
C
|
#ifndef GIT_UTF8_H
|
||
|
#define GIT_UTF8_H
|
||
|
|
||
|
int utf8_width(const char **start);
|
||
|
int is_utf8(const char *text);
|
||
|
void print_wrapped_text(const char *text, int indent, int indent2, int len);
|
||
|
|
||
|
#endif
|