X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fshared%2Futf8.h;h=c087995930eb0a75f2c7473829d45df97f5f9ff1;hp=fec76b487a620cbb4f245b54a58c042a6136501d;hb=75e52a16f9ef476f1d18ec6d9c84e00149b80d03;hpb=ba961854ddec8a8efcffab44540c33cc7dffebfa diff --git a/src/shared/utf8.h b/src/shared/utf8.h index fec76b487..c08799593 100644 --- a/src/shared/utf8.h +++ b/src/shared/utf8.h @@ -1,7 +1,6 @@ /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ -#ifndef fooutf8hfoo -#define fooutf8hfoo +#pragma once /*** This file is part of systemd. @@ -22,14 +21,22 @@ 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_escape_invalid(const char *s); -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_; +_pure_ static inline bool utf8_is_printable(const char* str, size_t length) { + return utf8_is_printable_newline(str, length, true); +} -char *utf8_filter(const char *s); -char *ascii_filter(const char *s); +char *utf16_to_utf8(const void *s, size_t length); -#endif +int utf8_encoded_valid_unichar(const char *str); +int utf8_encoded_to_unichar(const char *str);