Changeset 3019 for branches/libc-0.6


Ignore:
Timestamp:
Apr 7, 2007, 7:35:17 AM (18 years ago)
Author:
bird
Message:

Fixed broken tolower (when not inlined). Fixes #144.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/libc-0.6/src/emx/src/lib/locale/locale_ctype.c

    r2533 r3019  
    239239__ct_rune_t __tolower(__ct_rune_t __ch)
    240240{
    241     return __ch <= 255 && __ch >= 128 && __ch != -1 /* EOF */
     241    return __ch <= 255 && __ch >= -128 && __ch != -1 /* EOF */
    242242        ? __libc_GLocaleCtype.auchLower[__ch & 0xff]
    243243        : __ch;
Note: See TracChangeset for help on using the changeset viewer.