Differences From Artifact [a0db324d5d]:
- File
src/OFWideCString.h
— part of check-in
[e47ad44290]
at
2008-10-22 13:32:19
on branch trunk
— Reworked OFObject and added append(Wide)CString to OFString.
The reworked OFObject lets one test fail on the GNU runtime.
Unfortunately, I have no idea why... (user: js, size: 649) [annotate] [blame] [check-ins using]
To Artifact [4c42e42372]:
- File src/OFWideCString.h — part of check-in [326b0a1c33] at 2008-10-25 22:34:17 on branch trunk — initWithFooString -> initAsFooString. (user: js, size: 647) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
16 17 18 19 20 21 22 | @interface OFWideCString: OFString { wchar_t *string; size_t length; } | | | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | @interface OFWideCString: OFString { wchar_t *string; size_t length; } - initAsWideCString: (wchar_t*)str; - (wchar_t*)wcString; - (size_t)length; - (OFString*)clone; - (int)compareTo: (OFString*)str; - (OFString*)append: (OFString*)str; - (OFString*)appendWideCString: (const wchar_t*)str; @end |