Changeset 590 for trunk/server/lib/util/charset/charset.h
- Timestamp:
- Jul 1, 2011, 8:40:10 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/lib/util/charset/charset.h
r414 r590 243 243 { \ 244 244 while (*inbytesleft >= 1 && *outbytesleft >= 2) { \ 245 *(uint16*)(*outbuf) = to_ucs2[((unsigned char*)(*inbuf))[0]]; \245 SSVAL(*outbuf, 0, to_ucs2[((unsigned char*)(*inbuf))[0]]); \ 246 246 (*inbytesleft) -= 1; \ 247 247 (*outbytesleft) -= 2; \
Note:
See TracChangeset
for help on using the changeset viewer.