fbui | Framebuffer-based graphical environment |
| download: https://git.y1.nz/archives/fbui.tar.gz | |
| README | Files | Log | Refs |
libfbui/Term/iswprint.c
1
2 #include "fbterm.h"
3
4 #ifndef HAVE_ISWPRINT
5
6 int iswprint (wint_t wc)
7 {
8 if (wc >= 0x0 && wc <= 0x1F) return 0;
9 if (wc >= 0x7F && wc <= 0x9F) return 0;
10 if (wc >= 0xE000 && wc <= 0xF8FF) return 0;
11 return 1;
12 }
13
14 #endif /* HAVE_ISWPRINT */
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.