Changeset 21791 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Jul 25, 2009 5:10:57 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50393
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/utf-8.cpp
r21744 r21791 1118 1118 else if (uc < 0x04000000) 1119 1119 { 1120 *puch++ = 0xf 1| (uc >> 24);1120 *puch++ = 0xf8 | (uc >> 24); 1121 1121 *puch++ = 0x80 | ((uc >> 18) & 0x3f); 1122 1122 *puch++ = 0x80 | ((uc >> 12) & 0x3f); … … 1126 1126 else if (uc <= 0x7fffffff) 1127 1127 { 1128 *puch++ = 0xf 3| (uc >> 30);1128 *puch++ = 0xfc | (uc >> 30); 1129 1129 *puch++ = 0x80 | ((uc >> 24) & 0x3f); 1130 1130 *puch++ = 0x80 | ((uc >> 18) & 0x3f);
Note:
See TracChangeset
for help on using the changeset viewer.