15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
*/
#import "OFString.h"
@interface OFString_UTF8: OFString
{
@public
/**
* A pointer to the actual data.
*
* Since constant strings don't have s_store, they have to malloc it on
* the first access. Strings created at runtime just set the pointer to
* &s_store.
*/
struct of_string_utf8_ivars {
|
|
|
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
*/
#import "OFString.h"
@interface OFString_UTF8: OFString
{
@public
/*
* A pointer to the actual data.
*
* Since constant strings don't have s_store, they have to malloc it on
* the first access. Strings created at runtime just set the pointer to
* &s_store.
*/
struct of_string_utf8_ivars {
|