Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 05 Feb 2018 20:26:00 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-bugs@FreeBSD.org
Subject:   [Bug 225692] iswprint() wrong for some FULL WIDTH characters in UTF-8 locale
Message-ID:  <bug-225692-8-ZSXv1lSrCG@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-225692-8@https.bugs.freebsd.org/bugzilla/>
References:  <bug-225692-8@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D225692

--- Comment #2 from Conrad Meyer <cem@freebsd.org> ---
By the way, it might be interesting to play with nextwctype(3) to enumerate=
 the
current table.

wint_t wc =3D 0;
wctype_t wct =3D wctype("print");

while (wc < 0x10FFFF && wc >=3D 0) {
  wc =3D nextwctype(wc, wct);
  printf("%d: `%lc'\n", (int)wc, wc);
}

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-225692-8-ZSXv1lSrCG>