Changeset 3791
- Timestamp:
- Mar 22, 2012, 9:56:02 PM (13 years ago)
- Location:
- trunk/libc
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libc/include
-
Property svn:mergeinfo
set to
/branches/libc-0.6/src/emx/include merged eligible
-
Property svn:mergeinfo
set to
-
trunk/libc/include/_ctype.h
r2909 r3791 166 166 static __inline__ unsigned __ctype(__ct_rune_t __ch, unsigned __f) 167 167 { 168 return __ch < 256 && __ch >= -128 168 return __ch < 256 && __ch >= -128 && __ch != -1 /*EOF*/ 169 169 ? __libc_GLocaleCtype.aufType[__ch & 0xff] & __f 170 170 : 0; … … 178 178 static __inline__ int __isctype(__ct_rune_t __ch, unsigned __f) 179 179 { 180 return __ch <= 255 && __ch >= -128 180 return __ch <= 255 && __ch >= -128 && __ch != -1 /*EOF*/ 181 181 ? !!(__libc_GLocaleCtypeDefault.aufType[__ch & 0xff] & __f) 182 182 : 0; -
trunk/libc/src/libc/locale
-
Property svn:mergeinfo
set to
/branches/libc-0.6/src/emx/src/lib/locale merged eligible
-
Property svn:mergeinfo
set to
-
trunk/libc/src/libc/locale/locale_ctype.c
r3018 r3791 222 222 unsigned __ctype(__ct_rune_t __ch, unsigned __f) 223 223 { 224 return __ch <= 255 && __ch >= -128 224 return __ch <= 255 && __ch >= -128 && __ch != -1 /*EOF*/ 225 225 ? __libc_GLocaleCtype.aufType[__ch & 0xff] & __f 226 226 : 0;
Note:
See TracChangeset
for help on using the changeset viewer.