Changeset 3441:f78b184ef598 for intl/l10nflist.c
- Timestamp:
- 2003-07-24 11:40:50 (5 years ago)
- Branch:
- HEAD
- Files:
-
- 1 modified
-
intl/l10nflist.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
intl/l10nflist.c
r2769 r3441 357 357 358 358 for (cnt = 0; cnt < name_len; ++cnt) 359 if (isalnum ( codeset[cnt]))359 if (isalnum ((unsigned char) codeset[cnt])) 360 360 { 361 361 ++len; 362 362 363 if (isalpha ( codeset[cnt]))363 if (isalpha ((unsigned char) codeset[cnt])) 364 364 only_digit = 0; 365 365 } … … 375 375 376 376 for (cnt = 0; cnt < name_len; ++cnt) 377 if (isalpha ( codeset[cnt]))378 *wp++ = tolower ( codeset[cnt]);379 else if (isdigit ( codeset[cnt]))377 if (isalpha ((unsigned char) codeset[cnt])) 378 *wp++ = tolower ((unsigned char) codeset[cnt]); 379 else if (isdigit ((unsigned char) codeset[cnt])) 380 380 *wp++ = codeset[cnt]; 381 381
