Changeset 27810 in webkit for trunk/JavaScriptCore/wtf
- Timestamp:
- Nov 14, 2007, 9:59:40 PM (18 years ago)
- Location:
- trunk/JavaScriptCore/wtf/unicode
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/unicode/UTF8.cpp
r27756 r27810 120 120 static const unsigned char firstByteMark[7] = { 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC }; 121 121 122 ConversionResult ConvertUTF16ToUTF8(122 ConversionResult convertUTF16ToUTF8( 123 123 const UChar** sourceStart, const UChar* sourceEnd, 124 124 char** targetStart, char* targetEnd, bool strict) … … 231 231 0x03C82080UL, 0xFA082080UL, 0x82082080UL }; 232 232 233 ConversionResult ConvertUTF8ToUTF16(233 ConversionResult convertUTF8ToUTF16( 234 234 const char** sourceStart, const char* sourceEnd, 235 235 UChar** targetStart, UChar* targetEnd, bool strict) -
trunk/JavaScriptCore/wtf/unicode/UTF8.h
r27746 r27810 63 63 // they constitute an error. 64 64 65 ConversionResult ConvertUTF8ToUTF16(65 ConversionResult convertUTF8ToUTF16( 66 66 const char** sourceStart, const char* sourceEnd, 67 67 UChar** targetStart, UChar* targetEnd, bool strict = true); 68 68 69 ConversionResult ConvertUTF16ToUTF8(69 ConversionResult convertUTF16ToUTF8( 70 70 const UChar** sourceStart, const UChar* sourceEnd, 71 71 char** targetStart, char* targetEnd, bool strict = true);
Note:
See TracChangeset
for help on using the changeset viewer.