MASK_SET          413 src/char.c                 for (i=from; i<=to; i++) MASK_SET(cs, i);
MASK_SET          416 src/char.c             for (i=from; i<SCM_CHARSET_MASK_CHARS; i++)  MASK_SET(cs, i);
MASK_SET          518 src/char.c                 MASK_SET(cs, ch);
MASK_SET          519 src/char.c                 MASK_SET(cs, (ch-('a'-'A')));
MASK_SET          856 src/char.c             if (isalnum(code)) MASK_SET(CS(SCM_CHARSET_ALNUM), code);
MASK_SET          857 src/char.c             if (isalpha(code)) MASK_SET(CS(SCM_CHARSET_ALPHA), code);
MASK_SET          858 src/char.c             if (iscntrl(code)) MASK_SET(CS(SCM_CHARSET_CNTRL), code);
MASK_SET          859 src/char.c             if (isdigit(code)) MASK_SET(CS(SCM_CHARSET_DIGIT), code);
MASK_SET          860 src/char.c             if (isgraph(code)) MASK_SET(CS(SCM_CHARSET_GRAPH), code);
MASK_SET          861 src/char.c             if (islower(code)) MASK_SET(CS(SCM_CHARSET_LOWER), code);
MASK_SET          862 src/char.c             if (isprint(code)) MASK_SET(CS(SCM_CHARSET_PRINT), code);
MASK_SET          863 src/char.c             if (ispunct(code)) MASK_SET(CS(SCM_CHARSET_PUNCT), code);
MASK_SET          864 src/char.c             if (isspace(code)) MASK_SET(CS(SCM_CHARSET_SPACE), code);
MASK_SET          865 src/char.c             if (isupper(code)) MASK_SET(CS(SCM_CHARSET_UPPER), code);
MASK_SET          866 src/char.c             if (isxdigit(code)) MASK_SET(CS(SCM_CHARSET_XDIGIT), code);
MASK_SET          870 src/char.c                 MASK_SET(CS(SCM_CHARSET_WORD), code);
MASK_SET          873 src/char.c                 MASK_SET(CS(SCM_CHARSET_BLANK), code);