Differences From Artifact [2b50f5bd43]:
- File src/OFCString.h — part of check-in [7b15048e25] at 2008-10-11 20:26:22 on branch trunk — Move length from base string class to subclasses & others. (user: js, size: 582) [annotate] [blame] [check-ins using]
To Artifact [7ab81c6a80]:
- File
src/OFCString.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: 628) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
22 23 24 25 26 27 28 29 | - initWithCString: (char*)str; - (char*)cString; - (size_t)length; - (OFString*)clone; - (int)compareTo: (OFString*)str; - (OFString*)append: (OFString*)str; @end | > | 22 23 24 25 26 27 28 29 30 | - initWithCString: (char*)str; - (char*)cString; - (size_t)length; - (OFString*)clone; - (int)compareTo: (OFString*)str; - (OFString*)append: (OFString*)str; - (OFString*)appendCString: (const char*)str; @end |