5 __IDSTRING(rcsid_i18n_h, "$MirOS: contrib/code/jupp/i18n.h,v 1.11 2017/12/06 21:16:57 tg Exp $");
9 int joe_iswupper(struct charmap *,int c);
10 int joe_iswlower(struct charmap *,int c);
13 /* the following two include _ */
14 int joe_iswalpha(struct charmap *,int c);
15 int joe_iswalnum(struct charmap *,int c);
17 int joe_iswdigit(struct charmap *,int c);
18 int joe_iswspace(struct charmap *,int c);
20 int joe_iswcntrl(struct charmap *,int c);
22 int joe_iswpunct(struct charmap *,int c);
24 int joe_iswgraph(struct charmap *,int c);
26 int joe_iswprint(struct charmap *,int c);
28 int joe_iswxdigit(struct charmap *,int c);
29 int joe_iswblank(struct charmap *,int c);
32 int joe_wcwidth(int wide, unsigned int c);
33 /* Looking for wswidth? Take a look at scrn.c/txtwidth() */
35 int joe_towupper(struct charmap *,int c);
36 int joe_towlower(struct charmap *,int c);
38 extern unsigned char unictrlbuf[11];
39 int unictrl(unsigned int c);