Differences From Artifact [820eccb843]:
- File src/OFString_UTF8.h — part of check-in [ce70e17b38] at 2012-01-05 00:56:18 on branch trunk — Update copyright. (user: js, size: 749) [annotate] [blame] [check-ins using]
To Artifact [958573e473]:
- File src/OFString_UTF8.h — part of check-in [a0d967e8dd] at 2012-01-24 12:01:50 on branch trunk — Cache hashes of strings. (user: js, size: 782) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
16 17 18 19 20 21 22 | #import "OFString.h" @interface OFString_UTF8: OFString { @public struct of_string_utf8_ivars { | | | | | > > | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | #import "OFString.h" @interface OFString_UTF8: OFString { @public struct of_string_utf8_ivars { char *cString; size_t cStringLength; BOOL UTF8; size_t length; BOOL hashed; uint32_t hash; } *restrict s; } @end |