Fast and reasonably complete (framebuffer) terminal emulator (Zig fork)

Use wchar_t instead of int in struct interval

mintsuki 79b4969f a82ef0a1

Changed files
+2 -2
+2 -2
term.c
···
// https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c
struct interval {
-
int first;
-
int last;
+
wchar_t first;
+
wchar_t last;
};
/* auxiliary function for binary search in interval table */