X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Futf8.h;h=59abee50ac08bc2ad26aed8fd90bea76869a606e;hb=553acb7b6b8d4f16a4747b1f978e8b7888fbfb2c;hp=96a03ea7cb71cf8854b6dc20db8088f7eef63c91;hpb=8f6ce71fe79d897b67157d92869db87ee2042af6;p=elogind.git diff --git a/src/shared/utf8.h b/src/shared/utf8.h index 96a03ea7c..59abee50a 100644 --- a/src/shared/utf8.h +++ b/src/shared/utf8.h @@ -25,13 +25,18 @@ #include "macro.h" +#define UTF8_REPLACEMENT_CHARACTER "\xef\xbf\xbd" + const char *utf8_is_valid(const char *s) _pure_; char *ascii_is_valid(const char *s) _pure_; -bool utf8_is_printable(const char* str, size_t length) _pure_; +bool utf8_is_printable_newline(const char* str, size_t length, bool newline) _pure_; +#define utf8_is_printable(str, length) utf8_is_printable_newline(str, length, true) -char *ascii_filter(const char *s); +char *utf8_escape_invalid(const char *s); +char *utf8_escape_non_printable(const char *str); char *utf16_to_utf8(const void *s, size_t length); int utf8_encoded_valid_unichar(const char *str); +int utf8_encoded_to_unichar(const char *str);