X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Futf8.h;h=dcf8588d32aaa7b8a68fab9694f9be2249ebb152;hb=540d8581834442ca1c8f79fa35e4b91c0ab51567;hp=794ae15ab982c526c4882e168543035a6e90e626;hpb=2e3d069236777cd62f755a02f4a239306b4ad21a;p=elogind.git diff --git a/src/shared/utf8.h b/src/shared/utf8.h index 794ae15ab..dcf8588d3 100644 --- a/src/shared/utf8.h +++ b/src/shared/utf8.h @@ -21,14 +21,23 @@ along with systemd; If not, see . ***/ +#include + #include "macro.h" -char *utf8_is_valid(const char *s) _pure_; +#define UTF8_REPLACEMENT_CHARACTER "\xef\xbf\xbd" + +const char *utf8_is_valid(const char *s) _pure_; char *ascii_is_valid(const char *s) _pure_; -char *utf8_is_printable_n(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 *utf8_filter(const char *s); -char *ascii_filter(const char *s); +char *utf8_escape_invalid(const char *s); +char *utf8_escape_non_printable(const char *str); +int utf8_encode_unichar(uint16_t c, char *p); 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);