diff options
Diffstat (limited to 'src/shared/utf8.h')
-rw-r--r-- | src/shared/utf8.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/shared/utf8.h b/src/shared/utf8.h index 794ae15ab9..f805ea6b59 100644 --- a/src/shared/utf8.h +++ b/src/shared/utf8.h @@ -21,12 +21,14 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ +#include <stdbool.h> + #include "macro.h" 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(const char* str, size_t length) _pure_; char *utf8_filter(const char *s); char *ascii_filter(const char *s); |