ref: 3e5e7c470c58ff0b76e6cabc83691897ca4d4e93
dir: /src/libc/wchar/wcwidth.c/
#include <wchar.h> #undef wcwidth /* incomplete, needs a real implementation */ int wcwidth(wchar_t wc) { if (!wc) return 0; else if (wc < 32 || wc >= 127) return -1; return 1; }