Lines Matching refs:c
259 # define SPELL_TOFOLD(c) (enc_utf8 && (c) >= 128 ? utf_fold(c) \ argument
260 : (c) < 256 ? (int)spelltab.st_fold[c] : (int)towlower(c))
262 # define SPELL_TOFOLD(c) (enc_utf8 && (c) >= 128 ? utf_fold(c) \ argument
263 : (c) < 256 ? (int)spelltab.st_fold[c] : (c))
267 # define SPELL_TOUPPER(c) (enc_utf8 && (c) >= 128 ? utf_toupper(c) \ argument
268 : (c) < 256 ? (int)spelltab.st_upper[c] : (int)towupper(c))
270 # define SPELL_TOUPPER(c) (enc_utf8 && (c) >= 128 ? utf_toupper(c) \ argument
271 : (c) < 256 ? (int)spelltab.st_upper[c] : (c))
275 # define SPELL_ISUPPER(c) (enc_utf8 && (c) >= 128 ? utf_isupper(c) \ argument
276 : (c) < 256 ? spelltab.st_isu[c] : iswupper(c))
278 # define SPELL_ISUPPER(c) (enc_utf8 && (c) >= 128 ? utf_isupper(c) \ argument
279 : (c) < 256 ? spelltab.st_isu[c] : (FALSE))