X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fshared%2Futf8.h;h=f56077438aa6970d7d6950b5452c5d9db97a85ff;hp=794ae15ab982c526c4882e168543035a6e90e626;hb=eff05270986a13e7de93ae16311f654d3f7c166f;hpb=2e3d069236777cd62f755a02f4a239306b4ad21a diff --git a/src/shared/utf8.h b/src/shared/utf8.h index 794ae15ab..f56077438 100644 --- a/src/shared/utf8.h +++ b/src/shared/utf8.h @@ -21,14 +21,16 @@ along with systemd; If not, see . ***/ +#include + #include "macro.h" -char *utf8_is_valid(const char *s) _pure_; +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_; - -char *utf8_filter(const char *s); -char *ascii_filter(const char *s); +bool utf8_is_printable(const char* str, size_t length) _pure_; 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);