Differences From Artifact [94d042b3cd]:
- File
src/OFString_UTF8+Private.h
— part of check-in
[4af49a13c3]
at
2017-05-07 20:10:13
on branch trunk
— Small code style change
Casts are now written like types in variable declarations. (user: js, size: 831) [annotate] [blame] [check-ins using]
To Artifact [bb37f1c56d]:
- File src/OFString_UTF8+Private.h — part of check-in [469a496cd2] at 2017-05-08 21:37:11 on branch trunk — Add OF_DESIGNATED_INITIALIZER & OF_METHOD_FAMILY (user: js, size: 854) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
17 18 19 20 21 22 23 | #import "OFString_UTF8.h" OF_ASSUME_NONNULL_BEGIN @interface OFString_UTF8 () - (instancetype)OF_initWithUTF8String: (const char *)UTF8String length: (size_t)UTF8StringLength | | | 17 18 19 20 21 22 23 24 25 26 27 | #import "OFString_UTF8.h" OF_ASSUME_NONNULL_BEGIN @interface OFString_UTF8 () - (instancetype)OF_initWithUTF8String: (const char *)UTF8String length: (size_t)UTF8StringLength storage: (char *)storage OF_METHOD_FAMILY(init); @end OF_ASSUME_NONNULL_END |