1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Fix iswgraph unicode support.

This commit is contained in:
Jonas 'Sortie' Termansen 2015-10-24 16:05:19 +02:00
parent bae08f13ef
commit 91087d9199

View file

@ -1,6 +1,6 @@
/******************************************************************************* /*******************************************************************************
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012. Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2015.
This file is part of the Sortix C Library. This file is part of the Sortix C Library.
@ -26,5 +26,5 @@
extern "C" int iswgraph(wint_t c) extern "C" int iswgraph(wint_t c)
{ {
return L'!' <= c && c <= L'~'; return L'!' <= c && c != 127;
} }