1 /* $MirOS: contrib/code/jupp/i18n.h,v 1.8 2017/07/08 16:23:26 tg Exp $ */
10 int joe_iswupper PARAMS((struct charmap *,int c));
11 int joe_iswlower PARAMS((struct charmap *,int c));
14 /* the following two include _ */
15 int joe_iswalpha PARAMS((struct charmap *,int c));
16 int joe_iswalnum PARAMS((struct charmap *,int c));
18 int joe_iswdigit PARAMS((struct charmap *,int c));
19 int joe_iswspace PARAMS((struct charmap *,int c));
21 int joe_iswcntrl PARAMS((struct charmap *,int c));
23 int joe_iswpunct PARAMS((struct charmap *,int c));
25 int joe_iswgraph PARAMS((struct charmap *,int c));
27 int joe_iswprint PARAMS((struct charmap *,int c));
29 int joe_iswxdigit PARAMS((struct charmap *,int c));
30 int joe_iswblank PARAMS((struct charmap *,int c));
33 int joe_wcwidth PARAMS((int wide, unsigned int c));
34 /* Looking for wswidth? Take a look at scrn.c/txtwidth() */
36 int joe_towupper PARAMS((struct charmap *,int c));
37 int joe_towlower PARAMS((struct charmap *,int c));
39 extern unsigned char unictrlbuf[11];
40 int unictrl PARAMS((unsigned int c));