From 3bbd8ff839354a6f488c8481d5e6336a3f637cee Mon Sep 17 00:00:00 2001 From: Phil Jones Date: Sun, 23 Oct 2022 13:24:48 +0100 Subject: Replace wchar and friends with Unicode handling. All text handling should now be explicitly UTF-8 or UTF-32, removing the ambiguity around wchar_t and related functions. --- src/string_vec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/string_vec.c') diff --git a/src/string_vec.c b/src/string_vec.c index 2ef40a2..a30a570 100644 --- a/src/string_vec.c +++ b/src/string_vec.c @@ -6,7 +6,7 @@ #include #include "fuzzy_match.h" #include "string_vec.h" -#include "utf8.h" +#include "unicode.h" #include "xmalloc.h" static int cmpstringp(const void *restrict a, const void *restrict b) -- cgit v1.2.3