Changeset 2058 for trunk/src/emx/include/InnoTekLIBC
- Timestamp:
- Jun 23, 2005, 7:58:05 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/InnoTekLIBC/locale.h
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r2057 r2058 90 90 /** MBCS prefixes. Two bits per character. */ 91 91 unsigned char au2MBCSPrefixs[256/4]; 92 /** Unicode translation. (0xffff means no ttranslation.) */92 /** Unicode translation. (0xffff means no translation.) */ 93 93 unsigned short aucUnicode[256]; 94 94 /** Unicode -> SBCS conversion: 0..128. */ … … 136 136 /** Bit flags for every character (for iswXXX() function series). */ 137 137 unsigned aufType[256]; 138 /** Mask used to check if an index is within the above arrays. 139 * This is required because 'C' doesn't do more than 0-127. So, 140 * the mask is either ~0xff or ~0x7f. */ 141 unsigned uMask; 138 142 } __LIBC_LOCALEWCTYPE; 139 143 /** Pointer to the Ctype unicode struct. */ … … 217 221 extern const __LIBC_LOCALECTYPE __libc_GLocaleCtypeDefault; 218 222 /** Cached Unicode (__wchar_t) case conversion tables and flags. */ 219 extern const__LIBC_LOCALEWCTYPE __libc_GLocaleWCtype;223 extern __LIBC_LOCALEWCTYPE __libc_GLocaleWCtype; 220 224 /** Locale information structure. */ 221 225 extern __LIBC_LOCALELCONV __libc_gLocaleLconv; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.