Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utf8.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/utf8.h
blob: a0d7f591adc3d86e5c813d79059c7c0335b32dc3 (plain)
1
2
3
4
5
6
7
8
#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