Changeset 2537
- Timestamp:
- Feb 6, 2006, 11:10:06 PM (20 years ago)
- File:
- 
      - 1 edited
 
 - 
          
  branches/libc-0.6/src/emx/include/_ctype.h (modified) (2 diffs)
 
Legend:
- Unmodified
- Added
- Removed
- 
      branches/libc-0.6/src/emx/include/_ctype.hr2511 r2537 185 185 static __inline__ __ct_rune_t __toupper(__ct_rune_t __ch) 186 186 { 187 return __ch <= 255 && __ch >= -128 187 return __ch <= 255 && __ch >= -128 && __ch != -1 /*EOF*/ 188 188 ? __libc_GLocaleCtype.auchUpper[__ch & 0xff] 189 189 : (__ch); … … 192 192 static __inline__ __ct_rune_t __tolower(__ct_rune_t __ch) 193 193 { 194 return __ch <= 255 && __ch >= -128 194 return __ch <= 255 && __ch >= -128 && __ch != -1 /*EOF*/ 195 195 ? __libc_GLocaleCtype.auchLower[__ch & 0xff] 196 196 : __ch; 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
