From 6f03e49e68dfe0d9c0c7d49079c4383b26aca916 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 25 May 2020 18:57:24 +0000 Subject: Use the internal representation for UTF-8 keys instead of wchar_t and drop some code only needed for that. --- tmux.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index efdca430..a0369e34 100644 --- a/tmux.h +++ b/tmux.h @@ -30,7 +30,6 @@ #include #include #include -#include #include "xmalloc.h" @@ -2899,8 +2898,6 @@ void utf8_set(struct utf8_data *, u_char); void utf8_copy(struct utf8_data *, const struct utf8_data *); enum utf8_state utf8_open(struct utf8_data *, u_char); enum utf8_state utf8_append(struct utf8_data *, u_char); -enum utf8_state utf8_combine(const struct utf8_data *, wchar_t *); -enum utf8_state utf8_split(wchar_t, struct utf8_data *); int utf8_isvalid(const char *); int utf8_strvis(char *, const char *, size_t, int); int utf8_stravis(char **, const char *, int); -- cgit